Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion helloworld.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
console.log('hello world');

// Padding functions arround
// Padding functions around
function say(word) {
console.log(word);
}
Expand Down
10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
"description": "Node Beginer",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/max33nau/nodeWeek1LongReading.git"
"url": "https://github.com/max33nau/nodeWeek1LongReading"
},
"author": "Max Jacobsen",
"license": "ISC",
Expand All @@ -18,5 +19,8 @@
"homepage": "https://github.com/max33nau/nodeWeek1LongReading#readme",
"devDependencies": {
"formidable": "^1.0.17"
}
},
"keywords": [
"nodebeginner"
]
}