An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

        

# frontend-components-boilerplate

A boilerplate for proyects based on components, using webpack, es6, sass and pug.

[![Build Status](https://travis-ci.org/jramcast/frontend-components-boilerplate.svg?branch=master)](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