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 🙏

© 2025 – Pkg Stats / Ryan Hefner

steedos-cli

v2.6.32

Published

Develop and run your enterprise apps in miniutes

Downloads

3,354

Readme

Steedos

Develop and run your enterprise apps in miniutes

install from npm

npm i steedos-cli -g

install from src

cd cli
npm i -g

build creator bundle

meteor build --directory C:\srv\creator-build

run bundle

steedos run -s C:\srv\creator-build

develop app

  • create project folder
  • write main.js
  • steedos run will load main.js on bootstrap
steedos run -s C:\srv\creator-build

help

steedos run --help

i18n

  • 生成项目下对象的国际化文件

  • 语法 steedos i18n ${lng} [-s]

  • lng: 需要生成国际化的语言, 必填 (en | zh-CN)

  • -s: 项目所在路径, 默认为当前目录, 选填

  • -p: 需要国际化的项目文件夹

  • 示例: steedos i18n zh-CN -s D:\GitHub\steedos-project-saas

  • 示例:steedos i18n zh-CN -s . -p ./steedos-app

  • 开发环境运行方式: 进行cli项目, 执行 yarn build 后, 再进入bin文件夹下执行(示例): .\run i18n zh-CN -s D:\GitHub\steedos-project-saas

source

  • 需要配置环境变量: METADATA_SERVER、METADATA_APIKEY,可以通过项目的env文件进行配置。
  • config: 创建.env.local并写入METADATA_SERVER、METADATA_APIKEY。 比如 steedos source:config
  • retrieve: 从服务器获取数据生成本地文件。 比如 steedos source:retrieve -m Object:Accounts
  • deploy: 将本地文件部署到服务器。 比如 steedos source:deploy -p steedos-app\main\default

data

  • 需要配置环境变量: METADATA_SERVER、METADATA_APIKEY,可以通过项目的env文件进行配置。
  • export: 从服务器获取数据生成本地文件。 比如 steedos data:export -o accountssteedos data:export -o accounts -p
  • import: 将本地文件部署到服务器。 比如 steedos data:import -f accounts.jsonsteedos data:import -p account-plan.json

检索内置对象的扩展属性

方式1: 使用package.yml

1 新增package.yml

# 例如同步部门的自定义字段、按钮. 新增`steedos-app/package.yml`
CustomAction:
  - organizations.*
CustomActionScript:
  - organizations.*
CustomField:
  - organizations.*

2 在项目跟路径下执行命令

steedos source:retrieve -y ./steedos-app/package.yml

方式2: retrieve -m 命令

示例1: 同步部门的自定义按钮btn1

steedos source:retrieve -m CustomAction:organizations.btn1

示例2: 同步部门所有自定义按钮

steedos source:retrieve -m CustomAction:organizations.*