min-angular
Minimal AngularJS Setup
AngularJS
AngularJS needs no introduction.
Why?
- Most setups are bloated with unnecessary options.
- Start clean and minimal and extend as you go.
Features
- Minimal functional Angular setup.
- Minimal working example.
If you are new to Node
Download and Install Node.js, see How do I get started with Node.js for more information.
To use as Repository:
Clone
git clone https://github.com/dmitriz/min-angular
or simply Download this Repository,
unzip it and cd min-angular-master
.
Install dependencies
npm install --save-dev
To use as Package:
In your main project directory (should contain package.json
):
npm install min-angular --save
Getting started
Simply open demo/index.html
in your browser:
open demo/index.html
If everything works, you should see:
Angular is working: true
From here you can go and add anything you need. Enjoy!