https://github.com/disjfa/picalizer
Image editor. With just javascript css and some html!
https://github.com/disjfa/picalizer
frontend image-manipulation javascript webpack
Last synced: about 2 months ago
JSON representation
Image editor. With just javascript css and some html!
- Host: GitHub
- URL: https://github.com/disjfa/picalizer
- Owner: disjfa
- Created: 2018-03-28T22:10:31.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-09-26T21:30:03.000Z (almost 8 years ago)
- Last Synced: 2025-01-20T11:44:08.110Z (over 1 year ago)
- Topics: frontend, image-manipulation, javascript, webpack
- Language: HTML
- Homepage: https://disjfa.github.io/picalizer/
- Size: 1.93 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Webpack Frontend Starterkit
A lightweight foundation for your next webpack based frontend project.
### Installation
```
npm install
```
### Start Dev Server
```
npm run dev
```
### Build Prod Version
```
npm run build
```
### Features:
* ES6 Support via [babel-loader](https://github.com/babel/babel-loader)
* SASS Support via [sass-loader](https://github.com/jtangelder/sass-loader)
* Linting via [eslint-loader](https://github.com/MoOx/eslint-loader)
* Hot Module Replacement
When you run `npm run build` we use the [extract-text-webpack-plugin](https://github.com/webpack/extract-text-webpack-plugin) to move the css to a separate file and included in the head of your `index.html`, so that the styles are applied before any javascript gets loaded. We disabled this function for the dev version, because the loader doesn't support hot module replacement.