Creado por James Drummond
hace más de 9 años
|
||
1. Install HTML / Bootstrap boilerplate.2. Use 'npm init' to create package.json3. npm install bower -g4. Bower init to set up bower.json5. *** There are two ways of installing client side dependencies with Bower ***:- Bower install --save bootstrap . Installs bootstrap and jquery as project dependencies. (Saved in 'dependency' object of bower.json).- Bower install --save-dev angular-mocks. Installs module as development dependency. (Saved in 'devdependency' object of bower.json)6. npm install grunt --save-dev7. Create Gruntfile.js, see: http://gruntjs.com/sample-gruntfile- You will need to npm install --save-dev the various grunt plugins9. Install the karma npm package as well the karma cli package.- Install karma-jasmine plugin- Install karma phantomjs plugin- You can then run karma init to set up the karma.conf.json file.- Remember you need to install angular-mocks, etc. in order to run angular in a test environment.
¿Quieres crear tus propios Apuntes gratis con GoConqr? Más información.