Skip to content

Latest commit

 

History

History
45 lines (35 loc) · 1.03 KB

README.md

File metadata and controls

45 lines (35 loc) · 1.03 KB

want

want is a starter template for web application using webpack, angularjs, nodejs (express) and typescript

Building

To build:

$ yarn install

yarn is the best option, but you can use npm also.

Running

$ npm start

Open your browser on port 5000

http://localhost:5000/

Deploy

want is ready for deployment using Heroku. there is a Procfile, used by heroku to start the application.

$ git push heroku master

Folder Structure

The build has the following structure:

  • \src -> contains source files
  • \src\app -> contains typescript files, used for your angularjs application.
  • \src\styles -> contains SCSS files, used for your global app styles.
  • \dist -> contains distribution files
  • \bin -> contains cross platform scripts that used by the package.json file for building Webpack and start the application.
  • \index.ts -> the main Express application file for execution.