Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Development of Npm package

2025-02-21 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Network Security >

Share

Shulou(Shulou.com)06/01 Report--

Directory structure of personal development package ├── coverage / / istanbul test coverage generated file ├── index.js / / entry file ├── introduce.md / / description file ├── lib │ └── node-cnblogs-spider.js / / main file ├── node_modules / / third-party package ├── package.json ├── README.md └── test / / Unit test file └── node-cnblogs-spider.test.js development step registration

Npmjs

Add user on the command line

After the registration is successful, execute on the command line

Zqz@ubuntu:~$ npm adduserUsername:

Fill in and enter one by one.

Whoami

After filling in the above, enter on the command line

Zqz@ubuntu:~$ whoamizqz

It means it worked.

Npm publish

Finally, it is posted on npmjs

Npm publish

A similar version number appears below and it is a success.

+.... @ 1.0.0index.js / * Export node-cnblogs-spider * / exports = module.exports = require ('. / lib/node-cnblogs-spider'); / * Export the version*/exports.version = require ('. / package.json') .version; installation & using npm install node-cnblogs-spider-- savevar ncs = require ('node-cnblogs-spider'); ncs ([url1,url2....]) Problems that may be encountered. Npm cannot log in.

When you add adduser, you fill in the password, account number and email address correctly. But it's always wrong.

This may be the source of your npm modified to Taobao.

Version number

Be careful to change the version number in package.json each time you release it.

The version number cannot be the same each time it is released.

For example: this time it is 1.0.0, it must not be 1.0.0 next time, otherwise it will make a mistake.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Network Security

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report