Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/alireza-mh/rawapp
- Owner: alireza-mh
- Created: 2018-05-23T12:58:12.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-13T22:04:14.000Z (almost 2 years ago)
- Last Synced: 2024-04-23T20:36:30.386Z (7 months ago)
- Language: JavaScript
- Size: 5.5 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
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
```