Socket
Socket
Sign inDemoInstall

@tb-dev/vndb

Package Overview
Dependencies
0
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @tb-dev/vndb

Custom query builder for VNDB


Version published
Weekly downloads
2
decreased by-97.33%
Maintainers
1
Install size
86.5 kB
Created
Weekly downloads
 

Readme

Source

@tb-dev/vndb

Custom query builder to interact with the VNDB database via its HTTPS API.

npm i @tb-dev/vndb

Usage

import { QueryBuilder, VNDB } from '@tb-dev/vndb';

const fields = ['title', 'image.url'];
const query = new QueryBuilder({ fields });

// Same as ['id', '=', 'v30168']
query.f('id').eq.v('v30168');

const { results } = await vndb.post.vn(query);
console.log(results);

Documentation

Read the documentation for more details.

License

MIT

Keywords

FAQs

Last updated on 15 Apr 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc