New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

elm-boilerplate

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

elm-boilerplate

A simple Makefile able to create a new Elm app

  • 1.3.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

elm-boilerplate

A simple Makefile able to create a new Elm app.

Build Status

Installation

Make sure you have elm, elm-live, elm-test and elm-css installed :

$ 2> /dev/null npm list --global --depth=0 | grep elm

or install them :

$ npm install --global elm elm-live elm-test elm-css

and simply install elm-boilerplate :

$ npm install --global elm-boilerplate

Create a new app

elm-boilerplate allows you to create a new Elm app by using elm-create

$ mkdir hello-world
$ cd hello-world
$ elm create hello world
$ make help

Start dev server

During development, you can use make dev to start elm-live and benefit from livereload

make dev # start dev server on port 8000
make dev PORT=1337 # start dev server on port 1337

Start debug server

During debug, you can use make debug to start elm-reactor and benefit from the history

make debug # start debug server on port 8000
make debug PORT=1337 # start debug server on port 1337

Run tests

You can run all tests suites with make test or use the watch mode with make test-watch

make test # run tests suites
make test-watch # watch mode

Keywords

FAQs

Package last updated on 30 Sep 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc