Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mantrajs/mantra-sample-blog-app
A sample blog app built with Mantra
https://github.com/mantrajs/mantra-sample-blog-app
Last synced: 9 days ago
JSON representation
A sample blog app built with Mantra
- Host: GitHub
- URL: https://github.com/mantrajs/mantra-sample-blog-app
- Owner: mantrajs
- License: mit
- Created: 2016-01-06T14:40:20.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-10-13T11:15:12.000Z (about 8 years ago)
- Last Synced: 2023-10-20T21:36:26.301Z (about 1 year ago)
- Language: JavaScript
- Homepage: http://mantra-sample-blog-app.herokuapp.com/
- Size: 250 KB
- Stars: 295
- Watchers: 41
- Forks: 107
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
## A Sample Blog App Written in Mantra
This is a sample blog app written in [Mantra](https://github.com/kadirahq/mantra) covering core features of it.
### Setting Up
* Clone this repo
* Do `npm install` to install dependencies
* Make sure you've installed Meteor locally### Running The App
Simply start your app with `meteor -p 5005`.
Then you can access the app on### Running Tests
In this app, every part of the client side is fully tested using the familiar tools like Mocha, Chai and Sinon.
Run tests with:
```
npm test
```**See package.json for more information about testing setup.**
### Running Storybook
This app is setup for [React Storybook](https://github.com/kadirahq/react-storybook). Run following command to start the React Storybook:
```
npm run storybook
```> **NOTE:** If this gives you missing module errors, React Storybook requires npm v3. Here's how to install npm3 and get it setup.
> ```js
> npm install -g [email protected]
> rm -rf node_modules
> npm install
> npm run storybook
> ```