Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/alireza-mh/rawapp

raw application with es6 with jest and gulp
https://github.com/alireza-mh/rawapp

Last synced: about 5 hours ago
JSON representation

raw application with es6 with jest and gulp

Awesome Lists containing this project

README

        

# RawApp
[![Build Status](https://travis-ci.org/alireza-mh/RawApp.svg?branch=master)](https://travis-ci.org/alireza-mh/RawApp)
[![CircleCI](https://circleci.com/gh/alireza-mh/RawApp.svg?style=svg)](https://circleci.com/gh/alireza-mh/RawApp)

Raw application with ES6 with jest and gulp.
this project have rollup and webpack config you can use either one of theme.
## Installation
clone the project and just install dependencies and you are good to go.
```sh
npm run install
```
## Start
you can use watch command as watcher and auto builder.
```sh
npm run watch
```
also if you installed gulp globally you can use gulp command directly.
```sh
gulp watch
```
also you can build project by npm.(Rollup)
```sh
npm run build
```
you can compile your file as library. (library folder)
```sh
npm run buildlib
```
Run webpack server.
```sh
npm run dev
```

## Test
```sh
npm run test
```