ELM 시작의 한 걸음

2987 단어 Elm
ELM에서 Hello World를 나올 때까지.

환경 : 요세미테 10.10.5
ELM 버전: 0.15.1

Elm Platform 설치



공식 에서 설치 프로그램을 다운로드하여 설치하세요.
클릭을 연타해 두면 우선 괜찮습니다. 어쩌면


elm 와 터미널에서 두드려 다음으로 나오면 설치할 수 있습니다.
Elm Platform 0.15.1 - a way to run all Elm tools

Usage: elm <command> [<args>]

Available commands include:

  make      Compile an Elm file or project into JS or HTML
  package   Manage packages from <http://package.elm-lang.org>
  reactor   Develop with compile-on-refresh and time-travel debugging
  repl      A REPL for running individual expressions

You can learn more about a specific command by running things like:

  elm make --help
  elm package --help
  elm <command> --help

In all these cases we are simply running 'elm-<command>' so if you create an
executable named 'elm-foobar' you will be able to run it as 'elm foobar' as
long as it appears on your PATH.

파일 만들기



ELM은 elm 파일을 컴파일하면 html(또는 JS)을 토합니다.
그래서 hello.elm을 만듭니다.
내용은 Example hello world! 을 붙입니다.

hello.elm
import Html exposing (text)

main =
  text "Hello, World!"

빌드


elm-make hello.elm --output=hello.html
에서 hello.html이 생성됩니다.



이런 느낌입니다. 이제 시작선에 세웠습니다.

오류


Error when searching for modules imported by module 'Main':
    Could not find module 'Html'

Potential problems could be:
  * Misspelled the module name
  * Need to add a source directory or new dependency to elm-package.json

그리고 화가 나면 패키지가 부족하기 때문에 공식에서 가져 가자.elm-package install evancz/elm-html

참고


  • h tp : // 코데지네. jp / rc c / / 싶은 l / 8986
  • ぉ tp : /// ぉ오 p ぃぇ. 하테나 bぉg. 코m/엔트리/2014/12/02/200000
  • 좋은 웹페이지 즐겨찾기