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

@libria/scaffold-angular

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@libria/scaffold-angular

Angular cli wrapper template for @libria/scaffold

latest
Source
npmnpm
Version
0.0.5
Version published
Maintainers
1
Created
Source

@libria/scaffold-angular

Angular CLI wrapper template for @libria/scaffold.

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

Installation

npm install @libria/scaffold-angular

Usage

# Interactive — prompts for version first, then version-specific options
scaffold new angular my-app

# Non-interactive — pass all options via CLI
scaffold new angular my-app --version 21 --style scss --routing --ssr

# Show available options for a specific version
scaffold new angular my-app --version 18 --help

Supported Options

Options vary by Angular version. Common options include:

OptionTypeDescription
--versionselectAngular major version (e.g. 21, 20, 19, 18)
--styleselectStylesheet format (css, scss, sass, less)
--routingbooleanAdd routing module
--ssrbooleanEnable Server-Side Rendering
--package-managerselectPackage manager (npm, yarn, pnpm)
--strictbooleanEnable strict mode
--prefixstringComponent selector prefix
--skip-testsbooleanSkip generating test files
--skip-gitbooleanSkip git initialization
--skip-installbooleanSkip installing dependencies

How It Works

The plugin wraps npx @angular/cli@<version> new <name> and translates scaffold options into Angular CLI flags. The option set is auto-generated from Angular's JSON schemas across multiple 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