Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cli50

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cli50

Command line toolkit for building typescript packages.

  • 1.2.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
4
increased by300%
Maintainers
1
Weekly downloads
 
Created
Source

CLI50

Overview

CLI50 is a powerful command line toolkit designed to streamline the process of building TypeScript packages. It provides a collection of utility scripts to quickly scaffold Node.js packages, helping you focus more on logic and features rather than boilerplate setup.

Features

  • Create a TypeScript package with a single command
  • Pre-configured TypeScript and Node.js settings
  • Built-in test setup with Jest
  • Pre-configured Prettier for code formatting

Installation

Install the package globally using npm:

npm install -g cli50

Or with yarn:

yarn global add cli50

Usage

Once the package is installed globally, you can use the following scripts to create new packages.

Create a Package

To create a new package, run the following command:

create-package

This will generate a new directory containing all the files necessary for a package.

Directory Structure

After running the above commands, your project structure will look something like this:

<package-name>/
├── src/
│   ├── index.ts
│   └── index.test.ts
├── .gitignore
├── .prettierrc
├── package.json
├── tsconfig.json
└── README.md

Scripts

The generated package will include the following npm scripts:

  • npm run build: Compiles the TypeScript code
  • npm run test: Runs Jest tests

Contributing

If you'd like to contribute to CLI50, we'd love to have your help! You can open issues or submit pull requests on our GitHub repository.

License

CLI50 is available under the MIT license. See the LICENSE file for more details.

FAQs

Package last updated on 09 Sep 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc