csblogscraper
TypeScript icon, indicating that this package has built-in type declarations

1.3.2 • Public • Published

CS Blog and Updates Scraper

Get Blog and Update posts from CSGO

Usage:

import { getBlogPosts, getUpdatePosts } from "csblogscraper";

const blogPosts = await getBlogPosts();
const updatePosts = await getUpdatePosts();

OR

import getPosts from "csblogscraper";

const posts = await getPosts("https://blog.counter-strike.net/");

Output:

interface Post {
  title: string;
  url: string;
  date: Date;
  image?: string;
  content: string;
}

Package Sidebar

Install

npm i csblogscraper

Weekly Downloads

1

Version

1.3.2

License

ISC

Unpacked Size

7.04 kB

Total Files

6

Last publish

Collaborators

  • ta1al