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

cithak

v1.3.0

Published

Simple, Secure yet Powerful template manager

Readme

Cithak

icon


made-with-javascript badge badge badge badge

GitHub stars

Homepage: https://KucingKode.github.io/Cithak
File merging powered with Dmerge.js

🤔 What Is This

Cithak is a simple, secure yet powerful template manager CLI. Cithak can merge two templates by merge configuration files from those templates and Cithak was designed to be safe and transparent, so everything will be done under your permission.

📚 Motivation

Cithak was created because sometimes a template will broke other templates and templates are difficult to manage or combine. We solve this problem by give Cithak ability to merge readme and configuration files and ability to clone templates from github, gitlab, bitbucket, or your local storage with just simple CLI

💻 Features

  • Secure

    Cithak will log every activities and execute every tasks that you give permission to execute, or you can disable task execution with --no-exec flag

  • Smart

    Cithak can do more than overwrite your files, it can give index or merge data from two mergeable files like .json, .yaml, .env and some other configuration files, you can disable this feature with --no-merge flag

  • Flexible

    Cithak can use template from anywhere, clone templates from your local storage, github, gitlab, or bitbucket using git. You can use cithak with or without internet connection

📂 Installation

  • Node.js
npm install -g cithak
  • Windows, Linux, Mac

To use Cithak on Windows, Linux, or Mac without node js, download the latest executable for your operating system from releases


📃 Documentation

💡 Quick Start

  • Create a template
    Create a new folder for your template, you can configure your template inside template.json, it can contain description for your template and many more, for more information about template.json, read this section.
{
  "description": "describe-your-template-here"
}
  • Save new template
    To save a template just go to your template and type cth save [template-name]

  • Check your template
    After you save your template just check your template by using cth info [template-name], it should log your template name and it's description

  • Clone to your project
    The last thing you want to do is just clone your template to your project by typing cth clone [template-name].

Congratulation, now you know how to use Cithak CLI🎉

📘 Docs

CLI

information

for more CLI information type cth help in your terminal or search for command example

mergeable Files

  • YAML : *.yml, *.yaml
  • TOML : *.toml *.tml
  • JSON : *.json
  • README : README.[md, txt, markdown]
  • ENV : *.env
  • REST : *.rest
  • .prettierrc
  • .gitignore
  • .npmignore
  • .prettierignore

Template JSON

template.json is important for your template, it contains description and tasks of your template, template.json must have description that describe the template, and template.json can also have:

  • tasks

tasks is array of string contains all commands will executed

{
   "tasks": [
      "npm i package",
      "node index.js",
      "echo 'hello'"
   ]
}
  • include

include is array of glob string will include a file to the template folder if that file or folder is outside from the template folder.

"include": [
   "../outside.js",
   "../outside-folder/outside2.js"
]
  • exclude

exclude is array of glob string that will ignore files that match with it's pattern

"exclude": [
   "**/*-ignore.*"
]

More information, Visit our website


🎂 Contibuting

If you interested in contributing to this project, please read our CONTRIBUTING.md.

We are currently working on rewriting Cithak to TypeScript to make the cithak code more understandable and clear

📃 License

Cithak was published under MIT License.