Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/glorious-codes/glorious-codes
Organization's website
https://github.com/glorious-codes/glorious-codes
javascript prerender-spa-plugin vuejs
Last synced: about 2 months ago
JSON representation
Organization's website
- Host: GitHub
- URL: https://github.com/glorious-codes/glorious-codes
- Owner: glorious-codes
- Created: 2018-09-20T00:55:17.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-07-05T18:38:42.000Z (6 months ago)
- Last Synced: 2024-07-06T00:11:15.652Z (6 months ago)
- Topics: javascript, prerender-spa-plugin, vuejs
- Language: JavaScript
- Homepage: https://glorious.codes
- Size: 5.29 MB
- Stars: 10
- Watchers: 3
- Forks: 1
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Glorious Codes
Glorious Codes website[![CircleCI](https://circleci.com/gh/glorious-codes/glorious-codes/tree/master.svg?style=svg)](https://circleci.com/gh/glorious-codes/glorious-codes/tree/master)
[![Coverage Status](https://coveralls.io/repos/github/glorious-codes/glorious-codes/badge.svg?branch=master)](https://coveralls.io/github/glorious-codes/glorious-codes?branch=master)## Contributing
1. Install [Node](https://nodejs.org/en/). Download the "Recommend for Most Users" version.
2. Clone the repo:
``` bash
git clone [email protected]:glorious-codes/glorious-codes.git
```3. Go to the project directory
``` bash
cd glorious-codes
```4. Install the project dependencies
``` bash
npm install
```5. If you want to just build the project, run:
``` bash
npm run build
```6. Otherwise, run:
``` bash
npm run start
```The app runs on `http://localhost:7000`. The browser automatically reloads for any source file changes.
## Tests
1. Ensure that all code that you have added is covered with unit tests:
``` bash
npm run test
```2. You can optionally generate coverage report after running tests:
``` bash
npm run test -- --coverage
```