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

@wx-fc/vscode-snippets

v0.0.1

Published

A collection of essentials snippets for Visual Studio Code.

Downloads

3

Readme

VSCode Essentials Snippets

A collection of essentials snippets for Visual Studio Code.

Preview

Installation

  1. Install Visual Studio Code
  2. Launch Visual Studio Code
  3. Choose Extensions from menu
  4. Search for @wx-fc/vscode-snippets
  5. Click Install to install it
  6. Click Reload to reload the Code

Usage

Type part of a snippet, press enter and the snippet unfolds. For snippets in markdown format you need to press ctrl+space (Windows / Linux) or cmd+space (OSX).

Angular snippets

TypeScript snippets

| Snippet | Content | | -------------------- | ---------------------------- | | ng-class | Angular Class | | ng-component | Angular Component | | ng-component-input | Angular Component with Input | | ng-directive | Angular Directive | | ng-enum | Angular Enum | | ng-guard | Angular Guard | | ng-interface | Angular Interface | | ng-module | Angular Module | | ng-pipe | Angular Pipe | | ng-service | Angular Service |

RxJS Snippets

| Snippet | Content | | --------------------- | --------------------------- | | rx-extensions | RxJS Extensions import | | rx-observable | RxJS Observable import | | rx-subject | RxJS Subject import | | rx-subject-behavior | RxJS BehaviorSubject import | | rx-subject-replay | RxJS ReplaySubject import | | rx-add-observable | RxJS add observable import | | rx-add-operator | RxJS add operator import |

HTML snipppets

| Snippet | Content | | --------------------- | ----------------------------------------- | | ng-ngFor | Angular *ngFor | | ng-ngIf | Angular *ngIf | | ng-ngModel | Angular ngModel | | ng-routerLink | Angular routerLink | | ng-routerLink-param | Angular routerLink with a route parameter | | ng-select | select control with ngModel | | ng-pre | Angular pre with json |

Continuous Integration snippets

| Snippet | Content | | ------------- | --------------------------- | | ci-appveyor | AppVeyor configuration file | | ci-circle | Circle configuration file | | ci-travis | Travis configuration file |

Git snippets

| Snippet | Content | | --------------------------- | ------------------------------- | | gitattributes | .gitattributes file with eol=lf | | gitattributes-archives | Set archives as binary | | gitattributes-documents | Set documents as binary | | gitattributes-executables | Set executables as binary | | gitattributes-fonts | Set fonts as binary | | gitattributes-graphics | Set graphics as binary | | CHANGELOG | A CHANGELOG.md template | | README | A README.md template |

Lint snippets

| Snippet | Content | | -------------- | ------------------------- | | eslint | ESLint configuration file | | eslintignore | ESLint ignore file |

Project snippets

| Snippet | Content | | -------------- | ---------------------- | | editorconfig | EditorConfig file | | npmrc | npm configuration file | | package | package.json file |

Development

Install dependencies

  1. Install Node.js and npm
  2. Install Visual Studio Code

Run

Clone the repo

$ git clone https://github.com/wx-chevalier/@wx-fc/vscode-snippets.git

Install vsce

$ npm install -g vsce

Build the extension file

$ vsce package

# or

$ npm run build

Install the extension from a package file (.vsix)

  1. Launch Visual Studio Code
  2. Choose Extensions from menu
  3. Click More > Install from VSIX...
  4. Select the file @wx-fc/vscode-snippets-x.x.x.vsix
  5. Click Reload Now to reload the Code

Publish

Install vsce

$ npm install -g vsce

Create a publisher

$ vsce create-publisher <publisher-name>

Login

$ vsce login <publisher-name>

Publish

$ vsce publish

For more detailed information about publish: Publishing Extensions.

Author

Roberto Achar

License

MIT