1.0.0 • Published 3 years ago

hefs v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

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