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 🙏

© 2026 – Pkg Stats / Ryan Hefner

create-echo-cms

v1.1.6

Published

Official installer for Echo CMS - Create Echo CMS projects with one command

Readme

Create Echo CMS

Official installer for Echo CMS - The customized, enterprise-ready content management system.

Quick Start

Create a new Echo CMS project with one command:

npx create-echo-cms my-project

What You Get

  • Full Source Code Access - Complete Echo CMS core files
  • Custom Database Schema - echocms_ prefixed tables
  • Rebranded Interface - Echo CMS instead of Directus
  • Extended Features - Additional functionality over standard Directus
  • Enterprise Ready - Optimized for production use

Installation Options

Using npx with GitHub Token (Recommended)

npx create-echo-cms my-project --key=ghp_xxxxxxxxxxxxx
cd my-project
pnpm install
pnpm build
echo-cms init

Using SSH Authentication

npx create-echo-cms my-project --auth=ssh

Using Local Template (Development)

npx create-echo-cms my-project --local-path=/path/to/template

Advanced Options

# Custom template repository
npx create-echo-cms my-project --template-url=https://github.com/custom/repo.git

# Specific branch
npx create-echo-cms my-project --key=ghp_xxx --branch=develop

# All options
npx create-echo-cms my-project \
  --key=ghp_xxxxxxxxxxxxx \
  --branch=main \
  --template-url=https://github.com/EchoYazilim/echo-cms.git

Legacy Methods

# npm init
npm init create-echo-cms my-project

# yarn create
yarn create create-echo-cms my-project

# Environment variables (legacy)
export GITHUB_TOKEN=ghp_xxxxxxxxxxxxx
npx create-echo-cms my-project

Project Structure

my-project/
├── api/          # Backend API (Node.js, Express)
├── app/          # Frontend Admin Panel (Vue.js)
├── packages/     # Internal packages
├── directus/     # CLI tools (echo-cms command)
└── sdk/          # JavaScript SDK

Requirements

  • Node.js ≥ 16.0.0
  • Git (for template download)
  • Network access to GitHub

CLI Options

| Option | Description | Example | | ---------------------- | --------------------------------------- | --------------------------------------------------- | | --key <token> | GitHub personal access token | --key=ghp_xxxxx | | --token <token> | Alias for --key | --token=ghp_xxxxx | | --auth <method> | Authentication method (token/ssh/local) | --auth=ssh | | --template-url <url> | Custom template repository | --template-url=https://github.com/custom/repo.git | | --branch <branch> | Template branch to use | --branch=develop | | --local-path <path> | Use local template | --local-path=/path/to/template |

Authentication

GitHub Personal Access Token (Recommended)

  1. Go to GitHub → Settings → Developer settings → Personal access tokens
  2. Generate new token (classic)
  3. Select scopes: repo (for private repository access)
  4. Use with: npx create-echo-cms my-project --key=ghp_xxxxx

SSH Key Setup

  1. Generate SSH key: ssh-keygen -t ed25519 -C "[email protected]"
  2. Add to GitHub: Settings → SSH and GPG keys
  3. Test: ssh -T [email protected]
  4. Use with: npx create-echo-cms my-project --auth=ssh

Local Development

  • Use --local-path for offline development
  • Or set ECHO_CMS_TEMPLATE_PATH environment variable

Support

  • 📧 Issues: https://github.com/EchoYazilim/echo-cms/issues
  • 📖 Documentation: https://github.com/EchoYazilim/echo-cms#readme

License

GPL-3.0-only