[Elm] Installing and setting up Elm

Posted Answer1215

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Elm] Installing and setting up Elm相关的知识,希望对你有一定的参考价值。

Before writing any Elm we need to first install the runtime locally. In this lesson we install the Elm runtime locally and set up a simple application to verify everything is working properly.

 

Install:

npm install -g elm
elm package install
elm package install elm-lang/html

 

Code:

//main.elm

import Html exposing (text)

main = 
 text "Hello World!"

 

Run:

elm reactor

 

Go to localhost:8000 to see the website.

以上是关于[Elm] Installing and setting up Elm的主要内容,如果未能解决你的问题,请参考以下文章

kubernetes installing and using

Installing Selenium and ChromeDriver on Ubuntu

Installing Selenium and ChromeDriver on Ubuntu

Get Docker for CentOS and Installing Docker

Installing Node.js and Express on Ubuntu

[TypeScript] Installing TypeScript and Running the TypeScript Compiler (tsc)