Visit site: hoakusa.me
A single page application build by Angular 1.x using Webpack 2.x. The project code was written in ES6 support with Babel.
You can find some useful information:
- My working projects
- Porfolio website structure
- UX for personal page
- Motion Design
Warning: I am happy to share the code for everyone exclude image mateials. Forked by angular-webpack follow MIT license.
What you need to run this app:
node
andnpm
(Use NVM)- Ensure you're running Node (
v4.1.x
+) and NPM (2.14.x
+)
Download folder then run
npm install
to install all dependencies
Check package version in
package.json
inside/package.json
After you have installed all dependencies you can now run the app with:
npm start
It will start a local server using webpack-dev-server
which will watch, build (in-memory), and reload for you. The port will be displayed to you as http://localhost:8080
. Change port number at webpack.config.js
inside /webpack.config.js
.
- single run:
npm run build
- build files and watch:
npm start
- single run:
npm test
- live mode (TDD style):
npm run test-watch