harsh11bajaj021 7.9.4
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.
- package/app.js +6 -0
- package/notes.js +13 -0
- package/package.json +14 -0
package/app.js
ADDED
package/notes.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// add an account in npmjs
|
|
2
|
+
// install node , npm
|
|
3
|
+
// create public package
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
// steps : create a unique folder , where i wanna create a package
|
|
8
|
+
// npm init
|
|
9
|
+
// fill the fields
|
|
10
|
+
// create a code
|
|
11
|
+
// npm login in teminal of that code
|
|
12
|
+
// npm publish in the terminal
|
|
13
|
+
|
package/package.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "harsh11bajaj021",
|
|
3
|
+
"version": "7.9.4",
|
|
4
|
+
"description": "fucnction used to greet",
|
|
5
|
+
"main": "app.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
|
+
},
|
|
9
|
+
"keywords": [
|
|
10
|
+
"greet1783.893"
|
|
11
|
+
],
|
|
12
|
+
"author": "hardik",
|
|
13
|
+
"license": "ISC"
|
|
14
|
+
}
|