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-deploy-tool

v1.1.24

Published

to automation deploy your project

Downloads

30

Readme

使用说明

npm create deploy-tool

脚手架介绍

项目来源:大学计算机团队的老项目经常因为服务器过期需要重新部署新服务器。每次重新打包,手动拉到服务器过于繁琐,而使用coding或者github上的持续部署功能虽然好,但是对于后面的师弟师妹学习成本又过高,所以使用本地打包推送服务器的形式进行部署。

本项目做的事情如下,目的是使用该脚手架后,推送部署服务器只需要一行指令就能部署

  • 通过交互获取部署项目的地址,部署文件地址,用户名,密码,是否需要自动推送git
  • 将收集到的数据使用ejs填充脚本。将打包和部署脚本都放在项目下面的scripts文件夹(如果选择自动推送git,还会加上推送脚本)
  • 更新package.json,增加ssh2和archiver的库;增加打包指令(如果选择自动推送git,还会加上推送指令)
  • 使用npm install命令重新下载

脚手架如何制作的

主要是参考create-vue脚手架,许多代码都是研究后拷贝过来的。

后期计划

  • 加上docker推送
  • 该脚手架模仿create-vue增加本地测试脚本
  • 推广脚手架