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

billd-deploy

v1.0.26

Published

部署脚本

Downloads

33

Readme

简介

该插件主要帮你把本地项目部署到线上,做了以下事情:

  • 根据你传入的 env,判断
    • 如果是 prod,则检测 git 状态,是否已经将本地的代码都提交到远程仓库,如果没有,则报错(确保你部署到线上的代码都在远程仓库有一个提交记录,方便出问题回退),如果有,则执行 npm run release,然后执行 git push --follow-tags
    • 如果是 beta,则不检测 git 状态,也不执行 npm run release,直接下一步。
  • 根据你传入的 env,执行 npm run build:betanpm run build:prod(此时应该输出静态资源目录)。
  • 在你的项目根目录生成一个临时的 deploy.json 文件,它记录了此时的 git 信息、pkg 信息、构建时间。
  • 根据你的 ssh 配置,将你配置的文件目录和文件(此时应该配置输出的静态资源目录和 deploy.json 文件)上传到服务器。
  • 根据你的 cdn 配置,将你配置的文件目录和文件(此时应该配置输出的静态资源目录和 deploy.json 文件)上传到阿里云 oss / 华为云 obs / 七牛云,也可以配置不使用 cdn
  • 删除临时的 deploy.json 文件
  • 检测是否是 node 项目(ecosystem.config.js),如果是的话则显示提示(进入服务器重新安装依赖、重启 pm2)

ssh 和 cdn 操作都是执行的 put 操作,不会删除文件

安装

npm i billd-deploy

使用

esm 方式引入

import { deploy } from 'billd-deploy';

const myconfig = {
  env: 'beta', // 要求是'prod'或'beta'
  config: {
    // 这个data就是你传入deploy的配置,即myconfig
    cdn: (data) => (data.env === 'beta' ? 'none' : 'huawei'), // 使用哪种cdn,要求返回'huawei'或'ali'或'qiniu'或'none'
    // 这个data就是你传入deploy的配置,即myconfig
    ssh: (data) => false, // 是否使用ssh,要求返回true或者false
    // 这个data就是你传入deploy的配置,即myconfig
    sshConfig: (data) => {},
    // 这个data就是你传入deploy的配置,即myconfig
    sshFileConfig: (data) => {},
    // 这个data就是你传入deploy的配置,即myconfig
    huaweiObsConfig: (data) => {},
    // 这个data就是你传入deploy的配置,即myconfig
    huaweiObsFileConfig: (data) => {},
    // 这个data就是你传入deploy的配置,即myconfig
    aliOssConfig: (data) => {},
    // 这个data就是你传入deploy的配置,即myconfig
    aliOssFileConfig: (data) => {},
    // 这个data就是你传入deploy的配置,即myconfig
    qiniuConfig: (data) => {},
    // 这个data就是你传入deploy的配置,即myconfig
    qiniuFileConfig: (data) => {},
  },
};
deploy(myconfig);

commonjs 方式引入

const { deploy } = require('billd-deploy');

const myconfig = {
  env: 'beta', // 要求是'prod'或'beta'
  config: {
    // 这个data就是你传入deploy的配置,即myconfig
    cdn: (data) => (data.env === 'beta' ? 'none' : 'huawei'), // 要求返回'huawei'或'ali'或'qiniu'或'none'
    // 这个data就是你传入deploy的配置,即myconfig
    ssh: (data) => true, // 是否使用ssh,要求返回true或者false
    // 这个data就是你传入deploy的配置,即myconfig
    sshConfig: (data) => {},
    // 这个data就是你传入deploy的配置,即myconfig
    sshFileConfig: (data) => {},
    // 这个data就是你传入deploy的配置,即myconfig
    huaweiObsConfig: (data) => {},
    // 这个data就是你传入deploy的配置,即myconfig
    huaweiObsFileConfig: (data) => {},
    // 这个data就是你传入deploy的配置,即myconfig
    aliOssConfig: (data) => {},
    // 这个data就是你传入deploy的配置,即myconfig
    aliOssFileConfig: (data) => {},
    // 这个data就是你传入deploy的配置,即myconfig
    qiniuConfig: (data) => {},
    // 这个data就是你传入deploy的配置,即myconfig
    qiniuFileConfig: (data) => {},
  },
};
deploy(myconfig);

配置项

config 里面的所有配置项都需要返回特定的配置,具体请看:

https://github.com/galaxy-s10/billd-deploy/blob/master/src/interface.ts

{
  env: 'beta', // 要求是'prod'或'beta'
  config: {
    // 这个data就是你传入deploy的配置,即myconfig
    cdn: (data) => (data.env === 'beta' ? 'none' : 'huawei'), // 要求返回'huawei'或'ali'或'qiniu'或'none'
    // 这个data就是你传入deploy的配置,即myconfig
    ssh: (data) => true, // 是否使用ssh,要求返回true或者false
    // 这个data就是你传入deploy的配置,即myconfig
    sshConfig: (data) => {},
    // 这个data就是你传入deploy的配置,即myconfig
    sshFileConfig: (data) => {},
    // 这个data就是你传入deploy的配置,即myconfig
    huaweiObsConfig: (data) => {},
    // 这个data就是你传入deploy的配置,即myconfig
    huaweiObsFileConfig: (data) => {},
    // 这个data就是你传入deploy的配置,即myconfig
    aliOssConfig: (data) => {},
    // 这个data就是你传入deploy的配置,即myconfig
    aliOssFileConfig: (data) => {},
    // 这个data就是你传入deploy的配置,即myconfig
    qiniuConfig: (data) => {},
    // 这个data就是你传入deploy的配置,即myconfig
    qiniuFileConfig: (data) => {},
  },
}

案例

配置

在你的项目的 package.json 新增:

{
  // ...
  "scripts": {
    // ...
    "build:beta": "nuxt build",
    "build:prod": "nuxt build",
    "deploy:beta": "node ./deploy/index.js --beta",
    "deploy:prod": "node ./deploy/index.js --prod",
    "release": ""
  }
}

在你的项目新增:deploy/index.js:

const path = require('path');

const { deploy } = require('billd-deploy');

const env = process.argv.includes('--prod') ? 'prod' : 'beta';

deploy({
  env,
  config: {
    cdn: (data) => (data.env === 'beta' ? 'none' : 'huawei'),

    ssh: (data) => true,

    sshConfig: () => {
      return {
        host: 'xxxx',
        username: 'xxxx',
        password: 'xxxxx',
      };
    },

    sshFileConfig: (data) => {
      const outDir = data.env === 'prod' ? 'h5' : 'h5beta';
      return {
        // 将本地的目录上传到服务端目录
        dir: {
          local: path.resolve(__dirname, `../${outDir}`),
          remote: '/data/apps/html/xdyun',
        },
        // 将本地的文件上传到服务端目录
        file: {
          local: [
            path.resolve(__dirname, '../.npmrc'),
            path.resolve(__dirname, '../README.md'),
            path.resolve(__dirname, '../deploy.json'),
          ],
          remote: `/data/apps/html/xdyun/${outDir}`,
        },
      };
    },

    huaweiObsConfig: (data) => {
      const outDir = data.env === 'prod' ? 'h5' : 'h5beta';
      return {
        access_key_id: 'xxxxx',
        secret_access_key: 'xxxxx',
        server: 'obs.cn-east-3.myhuaweicloud.com', // 华为obs browser+客户端里面,桶列表,找到对应的桶,看旁边的操作栏里面基本信息,找到Endpoint
        bucket: 'ldres',
        prefix: `ldq_website/xdyun-web-app-${outDir}`, // obsPrefix的最前面不能带/
      };
    },

    huaweiObsFileConfig: (data) => {
      const outDir = data.env === 'prod' ? 'h5' : 'h5beta';
      return {
        // 将本地的目录上传到cdn目录(包括这个目录)
        dir: {
          local: path.resolve(__dirname, `../${outDir}`),
        },
        // 将本地的文件上传到cdn目录(注意不要将敏感信息上传到cdn!!!)
        file: {
          local: [path.resolve(__dirname, '../deploy.json')],
        },
      };
    },
  },
});

部署测试环境

npm run deploy:beta

部署正式环境

npm run deploy:prod

注意

从简介可以看出,你的 package.json 必须得存在以下脚本:

{
  // ...
  "scripts": {
    // ...
    "build:beta": "",
    "build:prod": "",
    "release": ""
  }
}

调试

  • 在本地的 billd-deploy 项目目录下执行:
pnpm link --global --dir=./
  • 启动项目:
npm run dev
  • 在用到 billd-deploy 的项目目录下执行:
pnpm link --global billd-deploy

源码

github:https://github.com/galaxy-s10/billd-deploy,欢迎 star or fork!