1 注册一个npm账号
npm https://www.npmjs.com/
2 初始化一个npm 项目
npm init -y
3编写一段代码
function fn(){
return 1+2
}
exports.hello=f服务器托管网n;
4发布到全局node_module
npm install . -g
5测试代码
创建一个text文件
npm link heath_apis
node index.js
6登录(我默认的 https://registry.npmjs.org/)
npm adduser
服务器托管网
npm login
登录账号
密码
邮箱
npm publish
去自己项目
npm install heath_apis -S
7 npm包迭代 (version 进行修改在进行上面的操作)
删除包
npm unpublish heath_apis --force -g
demo
第一步 npm init
第二部 (实现代码)
第三步 提交(上面)
测试
npm install heath_apis -S
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
Python中的并发编程允许你同时执行多个任务,提高程序的运行效率。在本文中,我们将介绍Python中的asyncio库,它是一个基于异步I/O的并发编程库,用于编写高性能的网络和并发代码。 1. 为什么要使用asyncio? 在传统的同步编程模型中,程序执行…