elm-spa/README.md

41 lines
961 B
Markdown
Raw Permalink Normal View History

2021-04-27 07:51:29 +03:00
# [![elm-spa](https://v6.elm-spa.dev/images/rounded-logo-bg.png)](https://elm-spa.dev)
2020-03-28 09:46:45 +03:00
2021-01-16 06:39:37 +03:00
# **Installation**
2020-03-30 04:51:10 +03:00
2021-01-16 06:39:37 +03:00
```bash
npm install -g elm-spa@latest
2020-03-30 04:51:10 +03:00
```
2021-02-04 06:49:31 +03:00
# **Quick start**
2021-01-16 06:51:12 +03:00
## **1. Create a new project**
```bash
2021-04-27 07:51:29 +03:00
npx elm-spa new
2021-01-16 06:51:12 +03:00
```
## **2. Check out the new files**
```bash
2021-02-04 06:49:31 +03:00
your-new-project/
2021-01-16 06:51:12 +03:00
- elm.json
- src/Pages/Home_.elm
- public/index.html
```
## **3. Run it in your browser**
```bash
2021-04-27 07:51:29 +03:00
npx elm-spa server # Ready at http://localhost:1234
2021-01-16 06:51:12 +03:00
```
2021-02-04 06:48:55 +03:00
# **Learn more**
__Visit the official site__ at [elm-spa.dev](https://elm-spa.dev) for more examples, guides, and other documentation.
2021-02-04 06:48:55 +03:00
2021-04-27 07:51:29 +03:00
### **Do I need the Elm package?**
2021-02-04 06:48:55 +03:00
2024-03-13 02:23:31 +03:00
If you are using elm-spa, there's no need to read the [ryan-haskell/elm-spa](https://package.elm-lang.org/packages/ryan-haskell/elm-spa/latest/) package documentation. The package only exists to constrain the CLI, and provides a few basic internal helper functions.
2021-04-27 07:51:29 +03:00
Check out [the official website](https://elm-spa.dev) instead!