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 🙏

© 2024 – Pkg Stats / Ryan Hefner

snyk-api-ts-client

v1.11.2

Published

Snyk Api Client generated from API Blueprint

Downloads

60,850

Readme

Snyk logo


Known Vulnerabilities Inactively Maintained

This repository is in maintenance mode, no new features are being developed. Bug & security fixes will continue to be delivered. Open source contributions are welcome for small features & fixes (no breaking changes)

Documentation based generated Snyk API TypeScript client

Taking as input a swagger definition we convert from the api blueprint, it generates a client for all Snyk API v1 endpoints. APIv3 endpoints are currently not supported.

Generated from Snyk APIs

Requirements

Node 14 or above

Installation

npm i snyk-api-ts-client

Usage

Find which endpoint is of interest to you in the API Reference.
Then import and use.

import {Orgs} from 'snyk-api-ts-client'


const main = async () => {
    const result = await new Orgs().get()
    console.log(result)
}
main()

If POST|PUT based requests, the types are available and should be inferred automatically by your IDE Should look something like this

import {Org} from 'snyk-api-ts-client'
import { ProjectsPostBodyType } from 'snyk-api-ts-client/dist/client/generated/org'


const main = async () => {
    const body: ProjectsPostBodyType = {filters: {}}
    const result = await new Org({orgId: '12345678-1234-1234-1234-123456789012'}).projects.post(body)
    console.log(result)
}
main()

Pass a boolean true/false to see the full response or just the data. Default is false, showing you only the response body.

Endpoint deprecation notice

As of 1.7.3, the /issues endpoint is decommissioned. The aggregated-issues endpoint is the replacement to use. Vulnerable paths can be retrieved using the paths endpoint which also contain the fixVersion info to know how to fix that particular path. The supporting methods are available in the client generated.