/Angular1-BareBones

Angular 1.X Bare Bones Project based on Angular Style Guide by John Papa

Primary LanguageJavaScriptMIT LicenseMIT

Angular 1.X Bare Bones Project

The Bare Bones project is an Angular 1.X starter project that has the npm modules, configuration, scripts, folders and routing in place to make getting started with an Angular 1.X project easy!

Here's what is in the project:

  • Angular scripts and configuration are ready to go
  • Angular bootstrapper wired up to the app module
  • App shell with basic routing applied
  • Utilized angular-ui-router for routing in application
  • Modular based application design to help with team development per feature
  • Dashboard module for initial layout
  • A single "feature" component (represents a custom feature your app would have)
  • A simple data service to provide data and show dependency injection
  • Routing between the homepage and the "feature"
  • Bootstrap for CSS
  • live-server used to launch the site and reload it as you make changes

It's a minimal app intended to get you up and running quickly so the rest is up to you!

App based on John Papa's Angular Style Guide. If you're using VS Code, you can install John Papa's Angular code snippets to simplify the process of writing Angular 1.X code. The code snippets make it easy to build Angular modules, controllers, services, factories, directives and more.

Running the Application

  1. Install Node.js

  2. Run npm install to install app dependencies

  3. Run npm start to start the server and launch the app

Project Influences

This project was influenced by Dan Wahlin's Angular 2 Bare Bones Project. If you are interested in working with Angular 2, you should check out his project as well.