Skip to content

Commit f4b763f

Browse files
author
Clay Liao
committed
first commit
0 parents  commit f4b763f

File tree

349 files changed

+26699
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

349 files changed

+26699
-0
lines changed

.gitignore

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
lib-cov
2+
*.seed
3+
*.log
4+
*.csv
5+
*.dat
6+
*.out
7+
*.pid
8+
*.gz
9+
10+
pids
11+
logs
12+
results
13+
14+
node_modules
15+
npm-debug.log
16+
17+
*.sublime-*

README.md

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Node in Practice
2+
3+
## Everything runs in parallel except your code
4+
5+
### Agenda
6+
7+
#### Objective
8+
9+
#### The Ledgend of Node
10+
11+
#### Lesson 1 - Node
12+
13+
#### Lesson 2 - Dirty your hands
14+
15+
#### Lesson 3 - Think different, Non-blocking Programming
16+
17+
#### Lesson 4 - Node in Yahoo!
18+
19+
#### Documantation
20+
21+
Please read tutorial [here](https://docs.google.com/a/yahoo-inc.com/document/d/1ilHdFN2w7BVtTPxrZk4yTtL7x2eLZS_mLQF3RlG1MkQ/edit).
22+
23+

homeworks/adahung/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
hello_express/node_modules

homeworks/adahung/README.md

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# traingNodejs
2+
## Homework 1
3+
Setup environment and say “Hello World” on browser.
4+
5+
### Learn
6+
* http server
7+
* callback
8+
### Run
9+
$ node server.js
10+
$ http://localhost:8888
11+
12+
## Homework 2
13+
14+
### Learn
15+
* handler handles different kind of requests
16+
* modulize using exports and require
17+
* parse request by url.parse and querystring.parse
18+
* call API using http.get (differences between 'data' and 'end')
19+
* write XML in response
20+
* JSLint
21+
22+
### Run
23+
$ node index.js
24+
25+
### Demo
26+
http://localhost:8888/news?category=lifestyle (Success XML rss from tw.news.yahoo.com/rss/lifestyle)
27+
http://localhost:8888/news?category=us (NotFound category in tw news so "undefined category" is returned)
28+
29+
## Homework 3
30+
Please see README.md in hello_express directory
31+
+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
## Homework 3
2+
![Screenshot](https://git.corp.yahoo.com/adahung/trainingNodejs/raw/master/homeworks/adahung/hello_express/screenshot.png)
3+
4+
### Learn
5+
* Build application using Express
6+
* Change template engine to hbs(Handlebars)
7+
* Handle GET/POST requests from users
8+
* Read/write files or directory using fs
9+
* Public assets management
10+
11+
### Run
12+
$ cd hello_express
13+
$ npm install
14+
$ node app
15+
16+
### Demo
17+
http://localhost:3000/guestbook
18+
+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
2+
/**
3+
* Module dependencies.
4+
*/
5+
6+
var express = require('express')
7+
, routes = require('./routes')
8+
, user = require('./routes/user')
9+
, guestbook = require('./routes/guestbook')
10+
, http = require('http')
11+
, path = require('path');
12+
13+
var app = express();
14+
15+
app.configure(function(){
16+
app.set('port', process.env.PORT || 3000);
17+
app.set('views', __dirname + '/templates');
18+
app.set('view engine', 'hbs');
19+
app.use(express.favicon());
20+
app.use(express.logger('dev'));
21+
/*app.use(express.bodyParser());*/
22+
app.use(express.bodyParser({uploadDir: '/tmp/'}));
23+
app.use(express.methodOverride());
24+
app.use(app.router);
25+
app.use(express.static(path.join(__dirname, 'public')));
26+
});
27+
28+
app.configure('development', function(){
29+
app.use(express.errorHandler());
30+
});
31+
32+
app.get('/', routes.index);
33+
app.get('/users', user.list);
34+
app.get('/guestbook', guestbook.get);
35+
app.post('/guestbook', guestbook.post);
36+
37+
http.createServer(app).listen(app.get('port'), function(){
38+
console.log("Express server listening on port " + app.get('port'));
39+
});
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"name": "application-name",
3+
"version": "0.0.1",
4+
"private": true,
5+
"scripts": {
6+
"start": "node app"
7+
},
8+
"dependencies": {
9+
"express": "3.0.0",
10+
"hbs": "*"
11+
}
12+
}
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
LOVE

0 commit comments

Comments
 (0)