Skip to content

promise-based dcinside unofficial api

License

Notifications You must be signed in to change notification settings

Akachu/typeinside

Repository files navigation

Install

npm i typeinside --save

Usage

get article data

import { article, request, getAppId } from "typeinside";

const appId = await getAppId();

/** @returns Article[]*/
let articleList = await article.list(galleryName, appId);

download image

const galleryName = "cat";

let index = await article.lastIndex(galleryName, appId);
let imgList = await article.image(galleryName, index, appId);

for (let img of imgList) {
  /** @returns { fileName: string, extension: string, data: Stream } */
  await request.image(img.full);

  // or download directly
  await request.image.save(img.full, "./catImages/");
}

License

MIT

other languages

About

promise-based dcinside unofficial api

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published