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

@libria/scaffold-nestjs

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
Package was removed
Sorry, it seems this package was removed from the registry

@libria/scaffold-nestjs

NestJs cli wrapper template for @libria/scaffold

latest
Source
npmnpm
Version
0.0.4
Version published
Maintainers
1
Created
Source

@libria/scaffold-nestjs

NestJS CLI wrapper template for @libria/scaffold.

This plugin scaffolds new NestJS projects by wrapping @nestjs/cli, exposing its options through the scaffold plugin interface. Options are dynamically resolved based on the selected NestJS version.

Installation

npm install @libria/scaffold-nestjs

Usage

# Interactive — prompts for version first, then version-specific options
scaffold new nestjs my-api

# Non-interactive — pass all options via CLI
scaffold new nestjs my-api --version 11 --language TypeScript --package-manager pnpm

# Show available options for a specific version
scaffold new nestjs my-api --version 10 --help

Supported Options

OptionTypeDescription
--versionselectNestJS major version (e.g. 11, 10)
--languageselectProgramming language (TypeScript, JavaScript)
--package-managerselectPackage manager (npm, yarn, pnpm)
--strictbooleanEnable TypeScript strict mode
--skip-gitbooleanSkip git initialization
--skip-installbooleanSkip installing dependencies

How It Works

The plugin wraps npx @nestjs/cli@<version> new <name> and translates scaffold options into NestJS CLI flags. The option set is auto-generated from NestJS's JSON schemas across the last 2 major versions.

License

MIT

Keywords

typescript

FAQs

Package last updated on 12 Feb 2026

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