Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@nekohimebot/neko-api

Package Overview
Dependencies
Maintainers
0
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nekohimebot/neko-api

Nekohime API

  • 1.0.13
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

neko-api

Full API Implementation inside NodeJS Module

More info at https://nkhm.xyz/

And you can upgrade your apikey to premium or VIP, you can see more details at https://nkhm.xyz/pricing

Installation

npm:

$ npm install @nekohimebot/neko-api

Simple to Use

CommonJs (CJS) syntax

const NekoAPI = require('@nekohimebot/neko-api');

ECMAScript Modules (ESM) syntax

import NekoAPI from '@nekohimebot/neko-api';

Example

const neko = new NekoAPI('ApiKEY');

// How to call the API
neko.[feature].[name](parameter)
  .then(response => {
    console.log(response);
  })
  .catch(error => {
    console.error(error.message);
  });

// Example of an API call
neko.stalking.npmjs("neko-api")
  .then(response => {
    console.log(response);
  })
  .catch(error => {
    console.error(error.message);
  });

Keywords

FAQs

Package last updated on 03 Dec 2024

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc