custom-proxy 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
package/index.js ADDED
@@ -0,0 +1,7 @@
1
+ //index.js
2
+
3
+ function helloNpm() {
4
+ return "hello world"
5
+ }
6
+
7
+ module.exports = helloNpm
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "custom-proxy",
3
+ "version": "1.0.2",
4
+ "description": "The custom-proxy package is an npm package that provides a custom proxy functionality. It allows users to create and configure a proxy server for their applications.",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/pdfmr/tmp.git"
12
+ },
13
+ "keywords": [
14
+ "custom-proxy"
15
+ ],
16
+ "author": "",
17
+ "license": "ISC",
18
+ "bugs": {
19
+ "url": "https://github.com/pdfmr/tmp/issues"
20
+ },
21
+ "homepage": "https://github.com/pdfmr/tmp#readme"
22
+ }
package/test/script.js ADDED
@@ -0,0 +1,5 @@
1
+ // test/script.js
2
+
3
+ const helloNpm = require('custom-proxy')
4
+
5
+ console.log(helloNpm())