create-mithriljs-app
v0.1.56
Published
Create a Mithril.js App in seconds.
Downloads
60
Readme
Create Mithril App
Create a Mithril.js project in seconds
Usage
Make sure you have npx installed (npx
is shipped by default since npm 5.2.0
)
npx create-mithriljs-app <my-project>
Or starting with npm v6.1 you can do:
npm init mithriljs-app <my-project>
Or with yarn:
yarn create mithriljs-app <my-project>
Features :tada:
- Choose between integrated server-side frameworks:
- Check the features needed for your project:
- PWA
- Linter / Formatter
- Prettier
- Typescript
- Choose your favorite UI framework:
- Choose your favorite test framework:
- Choose a state management framework
Optional
To install mithril@latest instead of mithril, add the command line flag --edge
:
npx create-mithriljs-app <my-project> --edge
Or
npm init mithriljs-app <my-project> --edge
Or
yarn create mithriljs-app <my-project> --edge