All Projects → hardikkaji → angularjs-es6-starter-kit

hardikkaji / angularjs-es6-starter-kit

Licence: other
Basic AngularJS, ES6, Webpack Starter Kit Project which includes Bootstrap 4 also. This is a boilerplate for AngularJS SPA with Bootstrap 4.

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
SCSS
7915 projects

Projects that are alternatives of or similar to angularjs-es6-starter-kit

Oppia
A free, online learning platform to make quality education accessible for all.
Stars: ✭ 4,361 (+15475%)
Mutual labels:  angularjs, tutorials
Root Bootstrap 4 Admin Template With Angularjs Angular 2 Support
Root is Boostrap 4 Admin Template with Angular 2 and AngularJS support
Stars: ✭ 54 (+92.86%)
Mutual labels:  angularjs, bootstrap4
Saturday Night Works
Takip ettiğim kaynaklardaki örneklere ait çalışmalar yer alır.
Stars: ✭ 312 (+1014.29%)
Mutual labels:  angularjs, bootstrap4
React Redux Styled Hot Universal
react boilerplate used best practices and focus on performance
Stars: ✭ 147 (+425%)
Mutual labels:  yarn, starter-kit
Staradmin Free Angular Admin Template
Star Admin Angular Admin is a free admin template based on Bootstrap 4 and Angular
Stars: ✭ 112 (+300%)
Mutual labels:  angularjs, bootstrap4
21 Points
❤️ 21-Points Health is an app you can use to monitor your health.
Stars: ✭ 244 (+771.43%)
Mutual labels:  yarn, bootstrap4
Ng1bs4
AngularJS with Bootstrap 4
Stars: ✭ 39 (+39.29%)
Mutual labels:  angularjs, bootstrap4
Gulp Scss Starter
Frontend development with pleasure. SCSS version
Stars: ✭ 339 (+1110.71%)
Mutual labels:  yarn, starter-kit
Coreui Angularjs
CoreUI AngularJS is free AngularJS admin template based on Bootstrap 4
Stars: ✭ 101 (+260.71%)
Mutual labels:  angularjs, bootstrap4
Clever Bootstrap 4 Admin Template With Angularjs Angular 2 Support
Clever is Boostrap 4 Admin Template with Angular 2 and AngularJS support
Stars: ✭ 98 (+250%)
Mutual labels:  angularjs, bootstrap4
Preact Minimal
🚀 Minimal preact structure
Stars: ✭ 136 (+385.71%)
Mutual labels:  yarn, starter-kit
VTMsite
Vampire: The Masquerade character creator page made with Angular
Stars: ✭ 36 (+28.57%)
Mutual labels:  angularjs, bootstrap4
Hapi Starter Kit
Hapi.js based REST boilerplate which uses latest ES7/ES8 features (async/await) with code coverage and follows best pratices
Stars: ✭ 103 (+267.86%)
Mutual labels:  yarn, starter-kit
manager
OVHcloud Control Panel
Stars: ✭ 153 (+446.43%)
Mutual labels:  angularjs, yarn
Wordpress Starter
📦 A starter template for WordPress websites
Stars: ✭ 26 (-7.14%)
Mutual labels:  yarn, starter-kit
Guides
Article back-end for hack.guides() website
Stars: ✭ 628 (+2142.86%)
Mutual labels:  angularjs, tutorials
relay-starter-kit
💥 Monorepo template (seed project) pre-configured with GraphQL API, PostgreSQL, React, Relay, Material UI.
Stars: ✭ 3,513 (+12446.43%)
Mutual labels:  yarn, starter-kit
Graphql Starter
💥 Monorepo template (seed project) pre-configured with GraphQL API, PostgreSQL, React, Relay, and Material UI.
Stars: ✭ 3,377 (+11960.71%)
Mutual labels:  yarn, starter-kit
Angular Full Stack
Angular Full Stack project built using Angular, Express, Mongoose and Node. Whole stack in TypeScript.
Stars: ✭ 1,261 (+4403.57%)
Mutual labels:  angularjs, starter-kit
wp-bootstrap4-sass
A clean slate Wordpress theme template with Bootstrap(4) Sass.
Stars: ✭ 28 (+0%)
Mutual labels:  bootstrap4, bootstrap-sass

AngularJS ES6 Starter Kit

Demo Netlify: https://hardik-angularjs-kit.netlify.com/

Demo Heroku: https://hardik-angularjs-kit.herokuapp.com/

Netlify Status Heroku

This repo contains webpack 5, AngularJS, ES6 and Bootstrap 4.6starter kit.

Prerequisites

Node 14+, Yarn

Steps to run project

  1. Clone Project.
  2. Do yarn install to install all dependencies.
  3. Finally yarn start to 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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].