https://github.com/mdxprograms/mithril-starter
Mithril Starter
https://github.com/mdxprograms/mithril-starter
mithril mithril-boilerplate mithril-starter mithriljs
Last synced: about 1 year ago
JSON representation
Mithril Starter
- Host: GitHub
- URL: https://github.com/mdxprograms/mithril-starter
- Owner: mdxprograms
- Created: 2018-11-11T06:20:48.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-05T03:06:34.000Z (almost 7 years ago)
- Last Synced: 2025-01-04T06:41:48.535Z (about 1 year ago)
- Topics: mithril, mithril-boilerplate, mithril-starter, mithriljs
- Language: JavaScript
- Homepage:
- Size: 259 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mithril Starter

### Up and running
`nvm use`
`npm i`
### Dev
`npm start`
### Build
`npm run build`
### App structure
```bash
src
├── components
│ └── Nav.js
├── index.html
├── index.js
├── models
│ └── User.js
├── router.js
└── views
├── HomeView.js
├── Layout.js
└── UserView.js
```
```markdown
* components - (examples: Nav, Footer, UserList)
* models - (Model/State => examples: User, Article)
* views - (Main pages => examples: HomeView, UsersView)
```