npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@solidgiant/ngx-sg-ws

v1.0.3

Published

NPM package that splits a large angular.json into modular and smaller project-local files

Readme

ngx-sg-ws

Generate angular.json from modular, human-friendly definitions.

Easily split a large angular.json into modular, project-local files using the power of JSON References, with the convenience of YAML and JSON5 formats.


How It Works

  1. Install ngx-sg-ws globally (using your preferred package manager):
npm install -g @solidgiant/ngx-sg-ws
# or
pnpm add -g @solidgiant/ngx-sg-ws
# or
yarn global add @solidgiant/ngx-sg-ws
  1. Navigate to your Angular project directory (where angular.json is located):
cd your-angular-project
  1. Initialize modular configuration files from your existing angular.json:
ngx-sg-ws --build

This generates angular-workspace.yaml and angular-project.yaml files.

  1. Edit your configuration in the new YAML files. You can now manage your workspace and project settings in a modular, human-friendly format.

  2. Regenerate angular.json after making changes:

ngx-sg-ws -v

This will update angular.json based on your YAML definitions.


Tip: Once set up, you can focus on editing angular-workspace.yaml and angular-project.yaml. Let ngx-sg-ws handle the generation of angular.json for you!

Features


Example

See the ngx-sg-ws-example repository. Pay special attention to angular-workspace.yaml and angular-project.yaml.


Options

| Option | Alias | Description | | -------------- | ----- | ------------------------------------------------------------------ | | --build | | Build files from angular.json | | --deps | | Update package.json with project-specific dependencies | | --debug | | Enable debug mode (retain temporary files) | | --dry-run | | Preview changes without writing files | | --verbose |-v | Enable verbose output | | --version | | Print version |