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

@msdkx/cli

v0.1.1

Published

CLI tool to scaffold applications and packages for msdkx monorepo

Readme

msdkx CLI

msdkx CLI is a versatile command-line tool developed by alphadevking to streamline the creation of applications and packages within the msdkx monorepo. Leveraging Turborepo and pnpm, the CLI ensures consistent project setups, enhancing productivity for large teams.

Features

  • Framework Support: Scaffold Next.js (App & Pages Router) and Vite applications.
  • Styling Options: Choose between TailwindCSS or traditional CSS.
  • Package Manager Flexibility: Select from pnpm, npm, or Yarn.
  • Custom Templates: Utilize internal templates for standardized project structures.
  • Git Integration: Optionally initialize a Git repository with the initial commit.

Installation

Install the msdkx CLI globally using your preferred package manager.

Using pnpm

pnpm add -g @msdkx/cli

Using npm

npm install -g @msdkx/cli

Using Yarn

yarn global add @msdkx/cli

Usage

Create a New Application

Use the create command followed by your desired application name.

msdkx create <app-name>

Example:

msdkx create my-new-app

Interactive Prompts:

  1. Choose a Framework:

    • Next.js (App Router)
    • Next.js (Pages Router)
    • Vite
  2. Add TailwindCSS?

    • Yes / No
  3. Choose a Package Manager:

    • pnpm
    • npm
    • yarn
  4. Initialize a Git Repository?

    • Yes / No

What Happens Next:

  • Template Selection: Based on your choices, the CLI selects the appropriate template.
  • Project Scaffolding: Copies the selected template to a new directory named after your project.
  • Template Processing: Renders any EJS templates, injecting dynamic values like the project name.
  • Dependency Installation: Installs dependencies using your chosen package manager.
  • Git Initialization (Optional): Initializes a Git repository and makes the initial commit.

Start the Development Server

Navigate to your project directory and start the development server.

cd <app-name>
pnpm dev
# or
npm run dev
# or
yarn dev

Contributing

Contributions are welcome! To contribute to the msdkx CLI, follow these steps:

  1. Fork the Repository

    git clone https://github.com/alphadevking/msdkx.git
    cd msdkx
  2. Navigate to the CLI Package

    cd packages/cli
  3. Install Dependencies

    pnpm install
  4. Make Your Changes

  5. Build the CLI

    pnpm build
  6. Link the CLI Locally (for testing)

    pnpm link --global
  7. Commit and Push Your Changes

  8. Open a Pull Request

Please ensure your code follows the project's coding standards and includes relevant tests.

License

This project is licensed under the MIT License.

Contact

For questions or support, please open an issue on the GitHub repository.


msdkx Monorepo