1.3.2 • Published 1 year ago

csblogscraper v1.3.2

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

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;
}
1.3.2

1 year ago

1.3.0

1 year ago

1.2.1

1 year ago

1.2.0

1 year ago

1.1.2

1 year ago

1.1.1

1 year ago

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago