1.0.0 • Published 10 months ago

al-atharnet-sdk v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

wakatime E2E Node.js CI GitHub License GitHub Release codecov Size typescript npm npm GitHub issues GitHub stars

al-atharnet-sdk

SDK to access alathar.net content.

Installation

To install al-atharnet-sdk, use npm or yarn:

npm install al-atharnet-sdk
# or
yarn add al-atharnet-sdk
# or
pnpm i al-atharnet-sdk

Usage

Importing the SDK

import { getPage } from 'al-atharnet-sdk';

Get Page Information

Retrieve metadata about a specific page.

(async () => {
    try {
        const page = await getPage(23233);
        console.log(page);
    } catch (error) {
        console.error(error.message);
    }
})();
1.0.0

10 months ago