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

mycloud-erp-cli

v1.0.13

Published

A cli to create project quickly...

Downloads

28

Readme

mycloud-erp-cli

项目二开脚手架

  • 快速初始化新客户二开项目模板

  • 拉包盖包,完成后即可直接使用VS运行.NET CORE项目

插件源码开发调试(开发模式)

本地开发调试

npm link

取消link

npm unlink -g

NPM包安装(用户模式)

npm install mycloud-erp-cli -g

如果安装很慢,可以切换国内源再执行以上命令安装:

npm config set registry=https://registry.npm.taobao.org

初始化新二开项目模板(针对第一次初始化二开代码仓库的客户)

在当前目录初始化项目

mycloud-erp-cli init

在指定目录初始化项目

mycloud-erp-cli init <dirname>

项目初始化拉平台/产品依赖包

在项目源码src目录下打开cmd命令行并输入以下指令:

mycloud-erp-cli pull

项目重置初始化拉平台/产品依赖包

可选参数: "-r" "--replay" 重新进行从拉包开始的所有操作(强制重新下载包、并重新覆盖当前项目)

mycloud-erp-cli pull -r

mycloud-erp-cli pull --replay

其他命令

切换下载包缓存目录

默认目录 D:/mysoftPackages

npm config set mysoftPackages <缓存目录路径>

如果发现这样的错误:Error: Command failed: npm config set mysoftPackages D:\mysoftPackages 可以尝试直接修改npm配置文件:

npm config edit

在最后一行添加:

mysoftPackages=<缓存目录路径>

Publish erp发布命令

发布命令,该命令须在src路径下执行。

mycloud-erp-cli publish

该命令可以将产品包的文件复制到ci/publish和ci/config,方便后续ERP的发布流程。