|
1 |
| -AngularJS [](https://travis-ci.org/angular/angular.js) |
| 1 | +AngularJS |
2 | 2 | =========
|
3 | 3 |
|
| 4 | +Fork from angularjs for Bonitasoft. |
| 5 | + |
| 6 | +To make branch 1.3.x working, we need to: |
| 7 | + |
| 8 | +* git checkout 1.3.x |
| 9 | +* nvm install 6.17.1 |
| 10 | + |
| 11 | +1. node module not exist https://github.com/angular/angular.js/issues/13123 |
| 12 | + |
| 13 | +Dans copy-npm-shrinkwrap.js |
| 14 | +Remplacer la fonction main |
| 15 | + |
| 16 | +function _main() { |
| 17 | + process.chdir(PROJECT_ROOT); |
| 18 | + if (!fs.existsSync(NODE_MODULES_DIR)) { |
| 19 | + fs.mkdirSync(NODE_MODULES_DIR); |
| 20 | + } |
| 21 | + copyFile(NPM_SHRINKWRAP_FILE, NPM_SHRINKWRAP_CACHED_FILE, onCopied); |
| 22 | +} |
| 23 | + |
| 24 | +2. npm install -g [email protected] |
| 25 | +pour pouvoir lancer grunt package |
| 26 | + |
| 27 | +3. Installer python2.7.18 |
| 28 | +https://tecadmin.net/install-python-2-7-on-ubuntu-and-linuxmint/ |
| 29 | + |
| 30 | +4. grunt package => |
| 31 | +Error: Could not create the Java Virtual Machine. |
| 32 | +Error: A fatal exception has occurred. Program will exit. |
| 33 | +Unrecognized option: -d32 |
| 34 | + |
| 35 | + |
| 36 | + |
| 37 | + |
| 38 | + |
| 39 | + |
| 40 | + |
| 41 | + |
| 42 | + |
| 43 | + |
| 44 | + |
| 45 | + |
| 46 | + |
| 47 | + |
4 | 48 | AngularJS lets you write client-side web applications as if you had a smarter browser. It lets you
|
5 | 49 | use good old HTML (or HAML, Jade and friends!) as your template language and lets you extend HTML’s
|
6 | 50 | syntax to express your application’s components clearly and succinctly. It automatically
|
7 | 51 | synchronizes data from your UI (view) with your JavaScript objects (model) through 2-way data
|
8 | 52 | binding. To help you structure your application better and make it easy to test, AngularJS teaches
|
9 | 53 | the browser how to do dependency injection and inversion of control.
|
10 | 54 |
|
11 |
| -Oh yeah and it helps with server-side communication, taming async callbacks with promises and |
| 55 | +Oh yeah and it helps with server-side communication, taming async callbacks with promises and |
12 | 56 | deferreds. It also makes client-side navigation and deeplinking with hashbang urls or HTML5 pushState a
|
13 | 57 | piece of cake. Best of all?? It makes development fun!
|
14 | 58 |
|
|
0 commit comments