npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

create-zoro

v1.1.7

Published

a deploy cli

Downloads

5

Readme

create-zoro

罗罗诺亚·索隆,是草帽一伙的战斗员,是使用三把刀战斗的三刀流剑士。立志成为世界第一大剑豪。

—— 来自 海贼王

啊,不。

这只是一个自动化部署的包...


食用方式

$ npm install create-zoro -g

在需要部署的项目下运行

zoro

首次运行会在项目根目录下生成配置信息 zoro/index.json 或者执行 zoro init 生成配置信息

{
  "privateKeyPath": "", // 本地私钥地址,位置一般在C:/Users/xxx/.ssh/id_rsa,非必填,有私钥则配置
  "passphrase": "", // 本地私钥密码,非必填,有私钥则配置

  // 根据需要进行配置,如只需部署prod线上环境,请删除dev测试环境配置,反之亦然,支持多环境部署
  "dev": {
    "name": "测试环境", // 环境名称
    "script": "npm run build", // 打包脚本
    "host": "", // 测试服务器地址
    "port": 22, // ssh port,一般默认22
    "username": "", // 登录服务器用户名
    "password": "", // 登录服务器密码
    "distPath": "dist", // 本地打包后端目录名
    "webDir": "", // 测试环境web目录
  },
  "prod": {
    "name": "线上环境", // 环境名称
    "script": "npm run build", // 打包脚本
    "host": "", // 线上服务器地址
    "port": 22, // ssh port,一般默认22
    "username": "", // 登录服务器用户名
    "password": "", // 登录服务器密码
    "distPath": "dist", // 本地打包后端目录名
    "webDir": "" // 线上环境web目录
  }
  // 再还有多余的环境按照这个格式写即可
}

执行部署

// 根据配置信息选择需要部署的环境
zoro <command>

然后,等待部署完成。。。

部署步骤

  • 第一步,执行打包脚本
  • 第二步,将脚本打包成zip
  • 第三步,连接SSH
  • 第四步,备份远端项目
  • 第五步,上传zip包
  • 第六步,在服务解压并删除zip包
  • 第七步,删除本地dist.zip包

兼容性注意: 要求 Node.js 版本 >=14.6.0. 当你的包管理器发出警告时,请注意升级你的 Node 版本。