Socket
Book a DemoInstallSign in
Socket

serenys

Package Overview
Dependencies
Maintainers
3
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

serenys

Serenys server side client library in JavaScript for Node.js

unpublished
latest
Source
npmnpm
Version
0.2.4
Version published
Maintainers
3
Created
Source

About

This is a powerful and official Node.js module that allows you to easily interact with the Serenys API.

  • Object-oriented
  • Performant
  • 100% coverage of the Serenys API

Installation

Node.js 16.9.0 or newer is required.

npm install serenys
yarn add serenys
pnpm add serenys

Example usage

Get a discord user's information:

import { Serenys } from 'serenys';
const client = new Serenys();

try {
	const data = await client.discord.users.get('299262860440371202');

	console.log(data);
} catch (error) {
	console.error(error);
}

Get a Instagram user's information:

import { Serenys } from 'serenys';
const client = new Serenys();

try {
	const data = await client.instagram.users.get('hhh.e_c.v');

	console.log(data);
} catch (error) {
	console.error(error);
}

Help

If you don't understand something in the documentation, you are experiencing problems, or you just need a gentle nudge in the right direction, please don't hesitate to join our official Serenys Server.

Keywords

api

FAQs

Package last updated on 22 Jun 2023

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