ELM 시작의 한 걸음
2987 단어 Elm
환경 : 요세미테 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.elmimport 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
참고
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
참고
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
Reference
이 문제에 관하여(ELM 시작의 한 걸음), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/KSako/items/4e4ddae4f6fcfae18fa3텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)