https://github.com/jramcast/frontend-components-boilerplate
A boilerplate for component-based proyects using es6, sass and pug
https://github.com/jramcast/frontend-components-boilerplate
Last synced: 3 months ago
JSON representation
A boilerplate for component-based proyects using es6, sass and pug
- Host: GitHub
- URL: https://github.com/jramcast/frontend-components-boilerplate
- Owner: jramcast
- License: apache-2.0
- Created: 2017-11-28T13:02:03.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-30T12:45:44.000Z (over 7 years ago)
- Last Synced: 2025-03-06T13:45:36.478Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 74.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# frontend-components-boilerplate
A boilerplate for proyects based on components, using webpack, es6, sass and pug.
[](https://travis-ci.org/jramcast/frontend-components-boilerplate)
WORK IN PROGRESS
## Requirements
* Node version >= 6
## Usage
### Multimanagement of packages
This project uses lerna to manage multiple components at once.
Please refer to lerna docs for instructions (https://github.com/lerna/lerna)
### Common commans
Install dependencies:
```
npm install
```Run app:
```
npm start
```Run tests:
```
npm test
```Run continuous testing:
```
npm run test:watch
```Run linter (coding standard):
```
npm run lint
```## How to create a new component
TODO
## Publish the release of a package
TODO