Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ud-ud/js-lib-seed
A seed project for any JS library.
https://github.com/ud-ud/js-lib-seed
chai istanbul javascript mocha seed webpack
Last synced: 29 days ago
JSON representation
A seed project for any JS library.
- Host: GitHub
- URL: https://github.com/ud-ud/js-lib-seed
- Owner: UD-UD
- License: mit
- Created: 2018-04-08T05:37:25.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-08T05:54:39.000Z (almost 7 years ago)
- Last Synced: 2024-11-06T04:29:52.271Z (3 months ago)
- Topics: chai, istanbul, javascript, mocha, seed, webpack
- Language: JavaScript
- Size: 73.2 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# JavaScript Library Seed
A seed project for any JavaScript Library.
## Getting Started
This seed will provide almost all the necessary libraries giving you a starting point for you JS developemt.
This seed includes :
* Webpack 4 as bundler
* Bable as transpiler
* Mocha / Chai for testing
* EsLint (Standard)
* Istanbul for Code Coverage### Prerequisites
```
node
```### Installing
Clone the repository and run the following command
```
npm install
```
After the installation all necessary library will be ready for you to directly start your developement## Build you app
```
npm run build
```## Running the tests
```
npm run test
```## Show Test Coverage
```
npm run cover
```