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

clevertree-cms

v1.1.6

Published

Clevertree Content Management System

Downloads

36

Readme

Clevertree CMS

“Perfection is achieved, not when there is nothing more to add, 
 but when there is nothing left to take away.” 
                                                ― Antoine de Saint-Exupéry

Introduction

Clevertree CMS is a light-weight and high performance UCMS (Universal Content Management System) with a primary goal for all of its content is transferable with other UCMS by the simplest possible interface.

Perquisites

  • nodejs
  • MySQL/MariaDB Server

What's Currently Working?

  • HTML-based content management with historic revisions
  • Upload files and create pages to any path
  • Host unlimited domains on a single node instance
  • Free, automated SSL via greenlock
  • Request administrator access by setting the domain's SOA email
  • Can be used stand-alone, or as a middleware within another NodeJS app
  • CMS API middleware can be enabled individually (example: content management @ /:content/ with no user management @ /:user/)
  • User services: Add, edit, reset / change password, list, delete, private message
  • Content services: Add, edit, multi-upload, delete, WYSIWYG editor
  • Interactive configuration

Planned Features

  • Content templates
  • MarkDown (.md) support
  • App: Sync, backup and publish websites via desktop / mobile / 3rd party app
  • Server-wide search: Search for specific content on all sites within a server, and even on other UCMS servers
  • DB support (NOSQL etc)
  • Git (repository) driven content management (no database)
  • Send and receive email
  • Socket chat / IRC
  • Third-party CMS integration: Recognize databases from other CMS software like WordPress and Concrete5

Project Goals

  • De-mystify HTML5 and Web-serving for the End-User
  • Free, Easy & SSL-secure Web Hosting for everyone
  • Quick-Start server configuration
  • Topical MVC - Database / API / client files must exist within the same topic directory
  • Maximum server performance with minimal overhead
  • Minimal HTML output! Example: Login Page (46 lines of HTML total)
    • Use as few tags as possible and keep documents small so they render quickly
  • Content only! No CMS-specific tags, prefixes, or support libraries on ANY rendered output
  • No server admins required - DNS SOA email authorizes administrator
  • Create sharable components across different CMS and websites
  • Client-side MVC - Render all GUI on the client's browser, never the server
  • Universal CMS / CMI: Common SCHEMA that may be shared with other CMS software

Client-side Sharable customElements

  • Sharable customElements between websites
  • Server determines the client-side dependencies for each customElement based on it's name automatically. Examples:
  • End-user HTML content only needs to contain the customElement tag and the dependencies will be found
  • Encapsulated in a single client-side customElement containing:
    • Model - Requests a copy of the model from the API as it relates to the module
    • View - Renders the client side module responsively based on the model data
    • Controller - Formats and sends the API request and routes the response to the user

Help Wanted

  • Javascript/NodeJS Programmer!
  • CSS Designer
  • Publicist
  • Quality Advocate

Sites Powered by CleverTree CMS

  • https://snesology.net/ - Free Digital Audio Workstation based on Super Nintendo Samples
  • https://ffga.me/ - Forgotten Future Video Game

Installation (Stand alone)

$ git clone https://github.com/clevertree/cms
$ cd cms
$ npm install

Install CMS MySQL Administrator (Required for multi-domain hosting)

$ sudo mysql
CREATE USER 'cms_user'@'localhost' IDENTIFIED BY 'cms_pass';
GRANT ALL ON *.* TO 'cms_user'@'localhost';
FLUSH PRIVILEGES;

Configure

$ npm run configure

Run Server

$ npm start

Installation (as Middleware)

$ npm i clevertree-cms -s

Use as middleware in your express server app

// Example: myapp.js
const express = require('express');
const clevertree = require('clevertree-cms');


// Create Express
const app = express();


// Add Your App
app.use(express.static(__dirname));


// CMS Config
const config = {
    database: {
        host: 'localhost',
        user: 'cms_user',
        password: 'cms_pass',
        database: 'afoh_info_cms'
    },
    server: {
        httpPort: 8080,
        sslEnable: false
        // sslPort: 8443,
    },
    mail: {
        client: {
            auth: {
                // user: "[email protected]",
                // pass: "mailmail"
            }
            // host: "mail.server.com",
            // port: 587
        }
    },
    session: {
        secret: "my-random-string-6d4b-48c8-9b3d-9c6bfd506057"
    }
};

// Add CMS middleware
app.use(clevertreeCMS.getMiddleware(config));

// Launch your server
app.listen(config.server.httpPort, function() {
    console.log('Example app listening on port: ' + config.server.httpPort);
});

Run Server

$ node myapp.js