New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@forgekit/cli

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@forgekit/cli

Modular full-stack project scaffolding tool

Source
npmnpm
Version
1.0.5
Version published
Weekly downloads
2
100%
Maintainers
1
Weekly downloads
 
Created
Source

ForgeKit

ForgeKit is a modular scaffolding tool that helps you spin up full‑stack projects with your choice of frontend, backend and UI frameworks. It creates the initial directory structure, initializes Git and installs required dependencies so you can start coding right away.

Prerequisites

  • Node.js (version 18 or later recommended)
  • npm or yarn
  • Git installed and available in your PATH

Example Usage

Install the package globally and run the CLI:

npm install -g @forgekit/cli
forge

Running forge will prompt you step‑by‑step for a frontend, UI library, backend and optional database. Choices are filtered so only compatible combinations are shown. The project is created in the directory where you executed the command and when scaffolding finishes you will be dropped into a shell inside the new project folder.

The tool can also be configured programmatically. Example configuration from the project plan:

{
  projectName: "acme-site",
  frontend: "react-vite",
  backend: "express",
  ui: "tailwind",
  targetDir: "./acme-site"
}

You can also use npx without installing globally:

npx @forgekit/cli

This behaves the same as the global install, prompting for details and placing you in the newly created project directory when finished.

If the forge command is not found after a global install, ensure your npm global bin directory is in your PATH. You can typically add it with:

export PATH="$PATH:$(npm bin -g)"

You can verify your environment at any time with the built in doctor command:

forge --doctor

Purpose

ForgeKit aims to streamline bootstrapping modern JavaScript projects by providing a collection of ready‑to‑use stacks with minimal setup hassle.

Development

Run tests with:

npm test

To update the stack documentation after modifying the available options run:

npm run generate-stack-docs

This will regenerate STACKS.md based on the registry files.

There is currently no formal CONTRIBUTING guide, but pull requests and issues are welcome.

FAQs

Package last updated on 25 May 2025

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