Skip to content

Edqe14/node-hefs

Repository files navigation

node-hefs

Dependencies Downloads License GitHub issues

Hololive EN Fan Website API Wrapper for Node

Quick start

  1. Install the package by running npm i -S hefs
  2. Import the package in your project
// Import the package
const { Client } = require('hefs');
// or ES6 import
import { Client } from 'hefs';

const options = {
  session: 'copySessionTokenFromCookies',
  fetchSubmissionsOnStart: true, // Fetch and cache all submissions when creating new client. Default: false
}

const client = new Client(options);

client.once('ready', () => {
  // Your code
});

Documentation

Available on https://edqe14.github.io/node-hefs/

License

This project is using the MIT License

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published