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

@billy-briggs-dev/sonar

v0.1.3

Published

Created by Billy Briggs

Readme

Sonar Nx

Created by Billy Briggs

This project adds native support for the Sonar Scanner to Nx.

This project has yet to be fully tested. Report any bugs if found.

Requirements

  • Sonar Scanner binary installed in your Shell environment

Getting Started

It is suggested that you follow the given format of creating a sonar-project.properties file at the root of your project. This will consolidate the properties values into a given file and is easier to maintain.

    //project.json
    ...
    "sonar": {
      "executor": "@billy-briggs-dev/sonar:sonar",
      "options": {
        "project.settings": "./sonar-project.properties"
      }
    }

Below is a list of all Options supported by the Executors interface:

Options

  • project.settings
    • The project settings file
    • Type: string
  • sonar.host.url
    • The url of the SonarQube server
    • Type: string
  • sonar.projectKey
    • The project key
    • Type: string
  • sonar.projectName
    • The project name
    • Type: string
  • sonar.projectVersion
    • The project version
    • Type: string
  • sonar.login
    • The SonarQube username
    • Type: string
  • sonar.password
    • The SonarQube password
    • Type: string
  • sonar.ws.timeout
    • The timeout for the SonarQube API
    • Type: string
  • sonar.projectDescription
    • The project description
    • Type: string
  • sonar.links.homepage
    • The project homepage
    • Type: string
  • sonar.links.ci
    • The project continuous integration
    • Type: string
  • sonar.links.issue
    • The project issue tracker
    • Type: string
  • sonar.links.scm
    • The project source code management
    • Type: string
  • sonar.sources
    • The project source directories
    • Type: string
  • sonar.tests
    • The project test directories
    • Type: string
  • sonar.sourceEncoding
    • The project source encoding
    • Type: string
  • sonar.externalIssuesReportPaths
    • The project external issues report paths
    • Type: string
  • sonar.projectDate
    • The project date
    • Type: string
  • sonar.projectBaseDir
    • The project base directory
    • Type: string
  • sonar.working.directory
    • The project working directory
    • Type: string
  • sonar.scm.provider
    • The project source code management provider
    • Type: string
  • sonar.scm.forceReloadAll
    • The project source code management force reload all
    • Type: string
  • sonar.scm.exclusions.disabled
    • The project source code management exclusions disabled
    • Type: string
  • sonar.scm.revision
    • The project source code management revision
    • Type: string
  • sonar.buildString
    • The project build string
    • Type: string
  • sonar.newCode.referenceBranch
    • The project new code reference branch
    • Type: string
  • sonar.log.level
    • The project log level
    • Type: string
    • path: #/properties/sonar.log.level
  • sonar.verbose
    • The project verbose
    • Type: string
  • sonar.scanner.dumpToFile
    • The project scanner dump to file
    • Type: string
  • sonar.scanner.metadataFilePath
    • The project scanner metadata file path
    • Type: string
  • sonar.qualitygate.wait
    • The project qualitygate wait
    • Type: string
  • sonar.qualitygate.timeout
    • The project qualitygate timeout
    • Type: string