https://github.com/umayr/vanilla
vanilla javascript sandbox with webpack, eslint, sass and babel.
https://github.com/umayr/vanilla
babel eslint javascript sass vanilla webpack
Last synced: 2 months ago
JSON representation
vanilla javascript sandbox with webpack, eslint, sass and babel.
- Host: GitHub
- URL: https://github.com/umayr/vanilla
- Owner: umayr
- License: mit
- Created: 2018-03-21T20:31:15.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-21T20:43:53.000Z (over 8 years ago)
- Last Synced: 2024-12-27T04:08:02.167Z (over 1 year ago)
- Topics: babel, eslint, javascript, sass, vanilla, webpack
- Language: JavaScript
- Size: 70.3 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Vanilla
> vanilla javascript sandbox with webpack, eslint, sass and babel.
Sometimes you need to test a few things in browser, or write a web app without any frameworks or libraries (if you
prefer), this could be a starting point.
It comes with a minimal webpack configuration with support for babel, eslint and sass.
To get it running:
```bash
# clone the repository
λ git clone git@github.com:umayr/vanilla.git
# change current directory
λ cd vanilla
# remove .git folder (in case you don't want to this repository's commits)
λ rm -rf .git
# install dependencies
λ yarn install
```
There are only two project commands that could be executed with either `yarn` or `npm`:
```bash
# build - creates a new webpack build
webpack --mode=production
# start - runs the webpack dev server with HMR
webpack-dev-server --inline --progress --mode=development
```
And that's it.