froxlor 19.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of froxlor might be problematic. Click here for more details.
- package/README.md +9 -0
- package/index.js +12 -0
- package/package.json +12 -0
- package/settings.json +24 -0
package/README.md
ADDED
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
|
+
}
|