Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kautenja/parse-server-boilerplate
boilerplate code for starting Parse Server projects in node.js
https://github.com/kautenja/parse-server-boilerplate
boilerplate es6 javascript parse-server
Last synced: 12 days ago
JSON representation
boilerplate code for starting Parse Server projects in node.js
- Host: GitHub
- URL: https://github.com/kautenja/parse-server-boilerplate
- Owner: Kautenja
- License: mit
- Created: 2017-05-06T03:03:01.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-06-03T08:44:44.000Z (over 6 years ago)
- Last Synced: 2024-11-04T21:40:53.843Z (about 2 months ago)
- Topics: boilerplate, es6, javascript, parse-server
- Language: JavaScript
- Homepage:
- Size: 93.8 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# parse-server-boilerplate #
## Usage ##
TODO:
## Static Analysis ##
You can run static analysis on the code to get a visual output of the complexity
and any potential problems that the linter on a development machine may have
missed. [plato](https://github.com/es-analysis/plato) is the current static
analysis tool. It will install with the other dependencies using `npm install`.To run the static analysis execute:
```shell
npm run-script lint
```The results will generate in the `static_analysis` directory as formatted HTML.
Open `index.html` in your web browser to look at the results of the analysis.## Inlining E-mail templates ##
Changing e-mail templates requires re inlining the files. This embeds the CSS
and removes the white space to produce a more machine friendly version of the
document for sending. The script to inline the email templates is in the
[package.json](package.json) file. It uses the command line tool
[inliner](https://github.com/remy/inliner). It will install with the other
dependencies using `npm install`.```shell
npm run-script inline
```## Documentation Generation ##
To generate a website with the project's documentation execute:
```shell
npm run-script doc
```