Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/grindjs/example-web
Example website built on Grind/ExpressJS
https://github.com/grindjs/example-web
express expressjs grind-example grind-framework grindjs mvc mvc-application node nodejs
Last synced: 29 days ago
JSON representation
Example website built on Grind/ExpressJS
- Host: GitHub
- URL: https://github.com/grindjs/example-web
- Owner: grindjs
- License: mit
- Created: 2016-08-07T19:43:04.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-05-22T21:12:44.000Z (over 3 years ago)
- Last Synced: 2024-11-11T23:12:48.245Z (3 months ago)
- Topics: express, expressjs, grind-example, grind-framework, grindjs, mvc, mvc-application, node, nodejs
- Language: SCSS
- Size: 56.6 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Grind Web Template
The Grind Web Template is an example project for building multipage websites on [Grind](https://github.com/grindjs/grindjs). It’s also used as the default template in [Grind Toolkit](https://github.com/grindjs/grindjs/tree/master/packages/toolkit) so you can quickly setup a new web project.
## Installation
```bash
git clone https://github.com/grindjs/example-web.git grind-example-web
cd grind-example-web
yarn install
```## Running
```bash
# Use `watch` to automatically restart the server on file changes
# Watch is recommended for development
yarn cli watch# Use `serve --cluster` to launch a cluster of workers
# Cluster is recommended for production
yarn cli serve --cluster# Use `serve` to launch a single worker
yarn cli serve
```You should now be able to visit [localhost:3100](http://localhost:3100).
## Documentation
Full documentation for Grind is available on the [Grind website](https://grind.rocks/).
## License
Grind was created by [Shaun Harrison](https://github.com/shnhrrsn) and is made available under the [MIT license](LICENSE).