File tree Expand file tree Collapse file tree 6 files changed +23
-7
lines changed Expand file tree Collapse file tree 6 files changed +23
-7
lines changed Original file line number Diff line number Diff line change
1
+ # http://EditorConfig.org
2
+
3
+ root = true
4
+
5
+ [* ]
6
+ indent_style = tab
7
+ tab_width = 4
8
+ charset = utf-8
9
+ end_of_line = lf
10
+ insert_final_newline = false
11
+ trim_trailing_whitespace = false
Original file line number Diff line number Diff line change @@ -57,4 +57,7 @@ Temporary Items
57
57
58
58
# third party node modules
59
59
node_modules
60
- package-lock.json
60
+ package-lock.json
61
+
62
+ # log files
63
+ * .log
Original file line number Diff line number Diff line change 2
2
node_modules /
3
3
tests /
4
4
Workspace.code-workspace
5
- * .log
5
+ .editorconfig
6
+ * .log
7
+ TODO.md
Original file line number Diff line number Diff line change 1
1
# Example - Hello World - Javascript
2
2
3
- [ ![ Latest Stable Version] ( https://img.shields.io/badge/Stable-v2.0 .0-brightgreen.svg?style=plastic )] ( https://github.com/web-dev-server/example-helloworld/releases )
3
+ [ ![ Latest Stable Version] ( https://img.shields.io/badge/Stable-v2.1 .0-brightgreen.svg?style=plastic )] ( https://github.com/web-dev-server/example-helloworld/releases )
4
4
[ ![ License] ( https://img.shields.io/badge/Licence-BSD-brightgreen.svg?style=plastic )] ( https://github.com/web-dev-server/example-helloworld/blob/master/LICENCE.md )
5
5
6
6
Hallo world example with static and dynamic content in Javascript.
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ App.prototype = {
44
44
* @param {response } response Current http response object.
45
45
* @return {Promise }
46
46
*/
47
- handleHttpRequest : function ( request , response ) {
47
+ HandleHttpRequest : function ( request , response ) {
48
48
// Called every request:
49
49
console . log ( "Application has been requested." ) ;
50
50
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " web-dev-server-example-helloworld" ,
3
- "version" : " 2.0 .0" ,
3
+ "version" : " 2.1 .0" ,
4
4
"keywords" : [
5
5
" hello" ,
6
6
" world" ,
10
10
" node"
11
11
],
12
12
"description" : " Hello world example with static and dynamic content in Javascript." ,
13
- "homepage" : " https://github.com/web-dev-server" ,
13
+ "homepage" : " https://github.com/web-dev-server/example-helloworld " ,
14
14
"repository" : {
15
15
"type" : " git" ,
16
16
"url" : " https://github.com/web-dev-server/example-helloworld.git"
23
23
},
24
24
"main" : " run-server.js" ,
25
25
"dependencies" : {
26
- "web-dev-server" : " ^2.0.2 "
26
+ "web-dev-server" : " ^2.1 "
27
27
}
28
28
}
You can’t perform that action at this time.
0 commit comments