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

lfgo

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lfgo

Quick start CLI tool for project templates

latest
Source
npmnpm
Version
1.1.1
Version published
Maintainers
1
Created
Source

Let’s Fuckin’ Go! (lfgo)

A fast CLI tool to scaffold projects from template repositories.

Usage

pnpx lfgo <preset|repo> <project-name>

Using a preset

pnpx lfgo react my-awesome-app

Using any GitHub repo

You can also specify any GitHub repository:

# Using username/repo format
pnpx lfgo username/repo-name my-project

# Using full URL
pnpx lfgo https://github.com/username/repo-name my-project

If the value doesn't match a known preset, the tool will ask you to confirm that you want to use it as a GitHub repo.

What it does

This will:

  • Clone the template repository (with --depth 1 for efficiency)
  • Create a fresh git repository
  • Update the package.json with your project name
  • Create an initial commit
  • Install dependencies with pnpm
  • Display next steps

Available Presets

  • react - React + TypeScript + Vite Template

Installation

No installation needed! Just run:

pnpx lfgo react my-project

Global Installation

pnpm add -g lfgo

Then use it anywhere:

lfgo react my-project

Adding New Presets

To add a new preset, edit bin/lfgo.js and add an entry to the PRESETS object:

const PRESETS = {
  react: {
    repo: "https://github.com/coreyward/quick-start-react-template",
    name: "React + TypeScript + Vite Template",
  },
  // Add your new preset here
  vue: {
    repo: "https://github.com/yourusername/vue-template",
    name: "Vue 3 Template",
  },
};

Requirements

  • Node.js >= 18
  • Git
  • pnpm

License

MIT

Keywords

cli

FAQs

Package last updated on 24 Nov 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