Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/rrrnld/startify

Quickly get started with frontend web development using browserify. No gulp, just npm scripts. Comes with a development server.
https://github.com/rrrnld/startify

Last synced: about 1 month ago
JSON representation

Quickly get started with frontend web development using browserify. No gulp, just npm scripts. Comes with a development server.

Awesome Lists containing this project

README

        

# 🚀

My minimalistic starter skeleton for frontend development. Comes with ES2015 via
`babel`, `browserify` and a live-reloading dev server thanks to `beefy`. Easily
extendible for use with React or other more fully-fledged solutions, no big
`gulp` config files. Also configures `standard` to use `babel-eslint` as the
parser, which is useful for linting some syntax extensions (e.g. async / await).

## Preconfigured commands

```
# Start a live-reload server that compiles scripts/index.js and provides it temporarily as bundle.js
$ npm run dev
# Compile and mangle scripts/index.js, spit out bundle.js
$ npm run bundle
```