https://github.com/likeastore/ngDialog
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Document</title> | |
</head> | |
<body> | |
<p> | |
<textarea class="js-copytextarea">Hello I'm some text</textarea> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* https://github.com/angular-fullstack/generator-angular-fullstack/blob/master/Gruntfile.js | |
* https://docs.strongloop.com/display/public/LB/AngularJS+Grunt+plugin | |
* http://amsterdam.luminis.eu/2014/12/10/improve-my-angularjs-project-with-grunt/ | |
* https://github.com/olov/ng-annotate | |
* https://github.com/mgol/grunt-ng-annotate | |
* https://oclazyload.readme.io/docs | |
https://github.com/strongloop/loopback-example-offline-sync/blob/master/Gruntfile.js |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ANGULAR PROJECT START | |
updatemac | |
yo angular-fullstack <project name> | |
Use ngRoute | |
NGMATERIAL | |
Look at https://material.angularjs.org/latest/ - has a numbe rof these features, uses ngRoute, ngMessage and ngSanitize | |
Don't update css not as part of ngmaterial |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir yo-angular-fullstack | |
cd yo-angular-fullstack | |
npm install --save-dev generator-angular-fullstack | |
yo angular-fullstack --coffee | |
grunt | |
grunt serve |
1a. Install the Angular Fullstack Yeoman generator.
npm install -g generator-angular-fullstack
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<section> | |
<section id="welcome" data-background-transition='zoom' data-transition='concave' data-background='http://ryanjarvinen.com/presentations/shared/img/broadcast_reveal_dark.png' data-state='blackout'> | |
<h2>Building</h2> | |
<p>with</p> | |
<h1>Javascript</h1> | |
<br/> | |
<p><i>featuring npm, grunt, yeoman, bower, and more!</i></p> | |
<br/> | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Outils généralistes | |
=================== | |
* Yeoman http://yeoman.io/ | |
Stack Javascript | |
================ | |
* Yeoman/ Angular-fullstack: https://github.com/DaftMonk/generator-angular-fullstack | |
stack Node/Express + Angular + MongoDB/Mongoose, avec générateurs automatiques de code. Gère |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
/* https://github.com/angular-fullstack/generator-angular-fullstack | |
* You can use this simplified gulpfile for creating dist by $>`gulp build` | |
* Deploy to heroku or dokku using git or heroku toolbelt | |
*/ | |
process.env.NODE_ENV = process.env.NODE_ENV || 'development'; | |
var os = require('os'); | |
var gulp = require('gulp'); |
NewerOlder