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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@govflanders/vl-build

v1.2.1

Published

Flanders UI Build Tools

Readme

Vlaanderen Build Tool

Hello awesome developer,

This mono-repository holds all the build scripts and mechanisms to develop components for the Flemish government. All the developer documentation can be called upon inside the repository with an npm script.

The main goal of this build is to contain all the components in one place, to have a good development workflow and to have control over the releases that are put on our: npm,cdn or aws.

This repository holds all the component packages and it is being managed with a tool called Lerna

Features

Packaging & Building:
Html, Css & Js:
Linting:
Optimalisations:

Installation

1. Clone the repository:

git clone [email protected]:vlaamseoverheid/vl-build.git

2. Install the dependencies and components:

npm i or yarn install

Getting started

After you have done the installation you can browse trough the files and have a look. All the components are npm packages, and work together with this build.

Filestructure

vl-build/
  + config/
  + dist/
  + scripts/
  + package/
  .env
  .eslintrc.yml
  .gitignore
  .sass-lint.yml
  package.json
  README.md
These are the mainly used files and folders:

Folders:

  • config: Holds all the configuration files for the scripts or for the binaries to run.
  • dist: This is a generated folder. It is the main folder that gets deployed or served to test your code.
  • scripts: This is folder holds all the npm scripts that are used in the package.json. You should not alter any code here.
  • package: This folder holds all components, demo, core and util packages.

Files:

  • .env: This file must be created to make a release see .config/.env.example, it holds secret config settings.
  • .eslintrc.yml: config file for EsLint.
  • .gitignore: ignores files in git.
  • .sass-lint.yml: config file for SassLint.
  • package.json: Contains all dependencies and scripts.
  • README.md: This file

Getting Help

Running scripts & Working on the project

We have developed a clean documentation of every script. There you can find the Usage of every script.

You just have to run this to get help:

npm run help:doc or yarn help:doc

You can also run a script to get a list of all scripts:

npm run help:ls:scripts or yarn help:ls:scripts

You can also get information for every component:

npm run help:repo:info -- --npm or yarn help:repo:info -- --npm

Our delivery system

TODO


Authors