Skip to content

Commit

Permalink
description added
Browse files Browse the repository at this point in the history
  • Loading branch information
sakhtar committed Jun 20, 2013
1 parent ef64cff commit b6ea045
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
CountryApp
==================

Node.js app meant to demonstrate functionality of node.js + express.js + jade + request module
Could be used for tutorial purpose.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
{
"name": "Country Info App",
"name": "CountryApp",
"version": "0.0.1",
"description": "node.js app meant to demonstrate functionality of node.js + express.js + jade + request module",
"author": "Sameer Akhtar <[email protected]>",
"private": true,
"scripts": {
"start": "node app"
Expand Down
1 change: 0 additions & 1 deletion routes/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,4 @@ var countries = require('./countries');
module.exports = function(app) {
app.get('/', countries.getcountires);
app.get('/country/:name', countries.getcountry);

};

0 comments on commit b6ea045

Please sign in to comment.