testpck-npm 1.0.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 testpck-npm might be problematic. Click here for more details.
- package/README.md +10 -0
- package/index.js +1 -0
- package/package.json +8 -0
package/README.md
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
# GRAMING NPM PACKAGE
|
2
|
+
- package created for testing only
|
3
|
+
|
4
|
+
## Deploy package on npmjs.com
|
5
|
+
- install npm on your system
|
6
|
+
- open cmd and login into npm
|
7
|
+
```bash
|
8
|
+
npm login # complete the username, password, email -> you'll receive a OTP code on the email
|
9
|
+
npm whoami # check w
|
10
|
+
```
|
package/index.js
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
console.log('Installing the package');
|