froxlor 19.0.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of froxlor might be problematic. Click here for more details.

package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # Node Hello World
2
+
3
+ Simple node.js app that serves "hello world"
4
+
5
+ Great for testing simple deployments to the cloud
6
+
7
+ ## Run It
8
+
9
+ `npm start`
package/index.js ADDED
@@ -0,0 +1,12 @@
1
+ const http = require('http');
2
+ const port = process.env.PORT || 3000;
3
+
4
+ const server = http.createServer((req, res) => {
5
+ res.statusCode = 200;
6
+ const msg = 'Hello Node!\n'
7
+ res.end(msg);
8
+ });
9
+
10
+ server.listen(port, () => {
11
+ console.log(`Server running on http://localhost:${port}/`);
12
+ });
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "froxlor",
3
+ "version": "19.0.1",
4
+ "description": "Simple node.js app that serves \"hello world\"",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1",
8
+ "preinstall": "node index,js"
9
+ },
10
+ "author": "",
11
+ "license": "ISC"
12
+ }
package/settings.json ADDED
@@ -0,0 +1,24 @@
1
+ {
2
+ "workbench.colorCustomizations": {
3
+ "activityBar.activeBackground": "#dd894d",
4
+ "activityBar.activeBorder": "#aff0ca",
5
+ "activityBar.background": "#dd894d",
6
+ "activityBar.foreground": "#15202b",
7
+ "activityBar.inactiveForeground": "#15202b99",
8
+ "activityBarBadge.background": "#aff0ca",
9
+ "activityBarBadge.foreground": "#15202b",
10
+ "editorGroup.border": "#dd894d",
11
+ "panel.border": "#dd894d",
12
+ "sideBar.border": "#dd894d",
13
+ "statusBar.background": "#cf6d28",
14
+ "statusBar.border": "#cf6d28",
15
+ "statusBar.foreground": "#15202b",
16
+ "statusBarItem.hoverBackground": "#a45620",
17
+ "titleBar.activeBackground": "#cf6d28",
18
+ "titleBar.activeForeground": "#15202b",
19
+ "titleBar.border": "#cf6d28",
20
+ "titleBar.inactiveBackground": "#cf6d2899",
21
+ "titleBar.inactiveForeground": "#15202b99"
22
+ },
23
+ "peacock.color": "#cf6d28"
24
+ }