0.0.11 • Published 2 years ago

arxivjs v0.0.11

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

arxivjs

This repo allows users to fetch parsed metadata from arxiv using the ArxivClient

Code example:

import { ArxivClient, ArticleMetadata } from "arxivjs";
const articleMetadata: ArticleMetadata = await client.getArticle(searchText);

Note that searchText can either be an Arxiv url or an article ID.

Return schema from the function:

{
  id: string;
  title: string;
  date: string;
  authors: string[];
  summary: string;
  journal: string;
  categoryNames: string[];
  pdf: string;
}
0.0.11

2 years ago

0.0.10

2 years ago

0.0.9

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago