npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

anime-sachedule-search-data

v0.1.554

Published

AnimeScheduleSearch项目的数据源

Downloads

21

Readme

anime-sachedule-search-data

Node.js Package Node.js CI LICENSE NPM

AnimeScheduleSearch项目的数据源

使用方法

本地使用

安装

npm i anime-sachedule-search-data
OR
yarn add anime-sachedule-search-data

基础数据

const data = require('anime-sachedule-search-data')

详细数据

const subjectData = require(`anime-sachedule-search-data/dist/subject/${id}.json`)

CDN

基础数据

https://cdn.jsdelivr.net/npm/[email protected]/dist/data.json

详细数据

https://cdn.jsdelivr.net/npm/[email protected]/dist/subject/${id}.json

${id}替换为对应动画的在Bangumi上的id

数据结构

基础数据

参考bangumi-data

本项目在[email protected]数据结构的基础上,在番组数据增加了一个image字段,图片地址不存在时候为''

同时基础数据上增加一个calendar字段,数据来源此API

没有修改站点元数据

基础数据结构如下:

{
    items:[], //番组数据对象的数组
    siteMeta:{}, // 站点元数据
    calendar:[] // 每日放送数据
}

详细数据

来源此API

项目数据来源

数据源1:
bangumi-data
数据修改部分见数据结构说明

数据源2:
Bangumi API
数据修改部分见数据结构说明

协议

代码协议

本项目源代码部分遵循MIT协议

数据协议

数据部分遵循署名 4.0 国际 (CC BY 4.0)

开发注意事项

开发工作在develop分支上进行,测试无误后再合并到master分支