angularjs-es6-starter-kit
                                
                                 angularjs-es6-starter-kit copied to clipboard
                                
                                    angularjs-es6-starter-kit copied to clipboard
                            
                            
                            
                        Basic AngularJS, ES6, Webpack Starter Kit Project which includes Bootstrap 4 also. This is a boilerplate for AngularJS SPA with Bootstrap 4.
AngularJS ES6 Starter Kit
Demo Netlify: https://hardik-angularjs-kit.netlify.com/
Demo Heroku: https://hardik-angularjs-kit.herokuapp.com/
This repo contains webpack 5, AngularJS, ES6 and Bootstrap 4.6starter kit.
Prerequisites
Node 14+, Yarn
Steps to run project
- Clone Project.
- Do yarn installto install all dependencies.
- Finally yarn startto run project.
For building project use yarn build
Enable Debug with VS Code
Folks, if you want to enable debugging with VSCode then you need to create launch.json file and add below two tasks in that file.
{
   "type":"node",
   "request":"launch",
   "name":"Debug",
   "program":"${workspaceFolder}/node_modules/webpack-dev-server/bin/webpack-dev-server",
   "args":[
      "--progress",
      "--debug"
   ]
},
{
   "name":"Launch Chrome against localhost, with sourcemaps",
   "type":"chrome",
   "request":"launch",
   "url":"http://localhost:3000",
   "sourceMaps":true,
   "webRoot":"${workspaceRoot}"
}
After adding these tasks, you need to run first debug task and then launch chrome task.