-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreadme.html
More file actions
45 lines (35 loc) · 1.2 KB
/
readme.html
File metadata and controls
45 lines (35 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<h1>Angular JS Notes</h1>
<h2>Getting Set Up</h2>
<ul>
<li>Include JQuery</li>
<li>Include Bootstrap</li>
<li>Include Angular JS (using bower or whatever)</li>
<li>Create your script js</li>
</ul>
<h2>Two Way Binding</h2>
<ul>
<li>Alert classes example with Angular</li>
<li>ngApp, ngController, $scope, services / modules</li>
<li>ngDirectives (for manipulating page, like JQuery)</li>
<li>Minification</li>
<li>Some Angular Errors</li>
<li><a href="https://docs.angularjs.org/api/">Angular API</a></li>
</ul>
<h2>Simple Node JS Server</h2>
<ul>
<li>npm install <a href="http://expressjs.com/api.html#app.delete.method">express</a>, <a href="http://enable-cors.org/server_expressjs.html">cors</a> (for cross browser), mongoose, bodyParser</li>
<li>set up simple routes</li>
<li>get route, post route</li>
</ul>
<h2>Install MongoDB</h2>
<ul>
<li>simple mongo usage</li>
<li><a href="https://alicoding.com/how-to-start-mongodb-automatically-when-starting-your-mac-os-x/">how to run mongo as a service in bg</a></li>
<li><a href="http://www.codeproject.com/Articles/828392/Basics-of-MongoDB">basic mongodb commands</a></li>
</ul>
<h2>Basic REST on FrontEnd</h2>
<ul>
<li>GET</li>
<li>POST</li>
<li>DELETE</li>
</ul>