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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@canseyran/create-ts-cli-app

v1.0.4

Published

Create TypeScript CLI App is a simple and efficient tool to set up a Node.js TypeScript project with minimal hassle. It comes pre-configured with essential tools and libraries, allowing you to focus on writing your code rather than setting up your environ

Downloads

42

Readme

🚀 Create TypeScript CLI App

Create TypeScript CLI App is a simple and efficient tool to set up a Node.js TypeScript project with minimal hassle. It comes pre-configured with essential tools and libraries, allowing you to focus on writing your code rather than setting up your environment.

✨ Features

  • 📁 Single File Output: Webpack bundles your project into a single JavaScript file with a shebang (#!/usr/bin/env node). This allows for easy integration and sharing without needing to install npm packages.
  • 🔷 TypeScript: Ensures type safety and improves code quality.
  • 🔍 ESLint: Maintains code quality by identifying and fixing problems in your JavaScript code.
  • 💅 Prettier: Ensures consistent code formatting.
  • 🧪 Unit Testing: Set up with Vitest to ensure your code is tested and reliable.
  • 🛠️ CLI Tools: Includes popular npm packages for creating CLI apps:
    • Chalk: For styling command-line output.
    • Commander: For parsing command-line arguments.
    • Inquirer: For creating interactive command-line prompts.

⚙️ Prerequisites

  • Node.js: Version 20 or higher.

🚀 Getting Started

To create a new project, run the following command:

npx @canseyran/create-ts-cli-app <project-directory>

Replace `` with your desired project folder name.

🛠️ Example

npx @canseyran/create-ts-cli-app random-trivia-app
cd random-trivia-app
npm start

📜 Available Commands

Once your project is set up, you can use the following npm scripts:

  • Start: Run the main TypeScript file.

    npm start
  • Build: Bundle your project into a single JavaScript file using Webpack.

    npm run build
  • Development Mode: Watch for changes and recompile automatically.

    npm run dev
  • Run Tests: Execute your unit tests with Vitest.

    npm test
  • Watch Tests: Run your tests in watch mode.

    npm run test:watch
  • Format Code: Format your code with Prettier.

    npm run format

📂 Project Structure

After setup, your project structure will look like this:

<project-directory>
├── README.md
├── eslint.config.mjs
├── package.json
├── src
│   ├── main.test.ts
│   └── main.ts
├── tsconfig.json
├── vitest.config.ts
└── webpack.config.js

🤝 Contributing

Contributions are welcome! Please open an issue or submit a pull request for any changes or improvements.

📄 License

This project is licensed under the MIT License.