You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+24-6Lines changed: 24 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,8 +19,14 @@ Create a production build with `elm-app build`
19
19
## Getting Started
20
20
21
21
### Installation
22
-
Node >=4 is required only as a build dependency.
23
22
23
+
Node >=6 is required as a dependency.
24
+
25
+
#### Yarn
26
+
27
+
`yarn global add create-elm-app`
28
+
29
+
#### NPM
24
30
`npm install create-elm-app -g`
25
31
26
32
If you are running Linux OS, you should install it as the superuser:
@@ -45,10 +51,11 @@ my-app/
45
51
.gitignore
46
52
README.md
47
53
elm-package.json
48
-
src/
49
-
App.elm
54
+
public/
50
55
favicon.ico
51
56
index.html
57
+
src/
58
+
App.elm
52
59
index.js
53
60
main.css
54
61
tests/
@@ -105,12 +112,23 @@ Inspired by [create-react-app](https://github.com/facebookincubator/create-react
105
112
106
113
***No Lock-In:** You can “eject” to a custom setup at any time. Run a single command, and all the configuration and build dependencies will be moved directly into your project, so you can pick up right where you left off.
107
114
115
+
## What is inside
116
+
117
+
The tools used by Create React App are subject to change.
118
+
Currently it is a thin layer on top of many amazing community projects, such as:
*[webpack](https://webpack.js.org/) with [webpack-dev-server](https://github.com/webpack/webpack-dev-server), [html-webpack-plugin](https://github.com/ampedandwired/html-webpack-plugin) and [style-loader](https://github.com/webpack/style-loader)
All of them are transitive dependencies of the provided npm package.
128
+
108
129
## Contributing
109
130
We would love to get you involved! Please check our [Contributing Guide](CONTRIBUTING.md) to get started!
110
131
111
-
## What is inside
112
-
This tool contains a local installation of [elm-platform](https://github.com/elm-lang/elm-platform) and heavily relies on [webpack](https://github.com/webpack/webpack) in the build process.
0 commit comments