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

nodebb-plugin-bboj

v1.1.0

Published

bboj的辅助插件

Downloads

4

Readme

nodebb-plugin-bboj

BBOJ配套使用的插件,用于利用nodebb提供oj前端

关于题目发布

要求发布者为problem-makers小组的成员

在文章中添加如下内容加载题目:

!<@hash>

其中,hash指代题目的hash值,访问bboj后端的/list查看

关于查看题目的权限

要求在bboj单独进行报名

报名可采用以下方法实现:

添加窗口部件:

<div class="list-group">
<button id="enroll" type="button" class="list-group-item disabled" style="width:100%;" disabled>日常训练</button>
</div>

container如下:

<div class="panel panel-default"><div class="panel-heading"><h3 class="panel-title">{{title}}</h3></div>{{body}}</div>

添加如下Js自定义代码:

fetch(`http://localhost:3000/has-user?uid=${app.user.uid}`,{method:'GET',mode:'cors'})
.then((res)=>{
    return res.json()
}).then((res)=>{
    if(res){
        $('#enroll').html($('#enroll').text()+'<span class="badge">已参与</sapn>')
    }else{
        $('#enroll').removeAttr('disabled')
        $('#enroll').removeClass('disabled')
    }
})
$('#enroll').click(()=>{
    $('#enroll').attr('disabled','disabled')
    $('#enroll').addClass('disabled')
    fetch(`http://localhost:3000/enroll?uid=${app.user.uid}&name=${btoa(app.user.username)}`,
    {method:'GET',mode:'cors'})
    .then((res)=>{
        return res.json()
    }).then((res)=>{
        if(!res.success){
            $('#enroll').removeAttr('disabled')
            $('#enroll').removeClass('disabled')
            alert(res.reason)
        }else{
            $('#enroll').html($('#enroll').text()+'<span class="badge">已参与</sapn>')
        }
    })
})

关于添加积分榜

可采用以下方法实现:

添加窗口部件:

<ul class="list-group" id="scoreboard">
</ul>

container如下:

<div class="panel panel-default"><div class="panel-heading"><h3 class="panel-title">{{title}}</h3></div>{{body}}</div>

添加如下Js自定义代码:(此处每10s刷新一次)

function renewScoreboard(){
    fetch('http://localhost:3000/scoreboard',{method:'GET',mode:'cors'})
    .then((res)=>{
        return res.json()
    }).then((data)=>{
        $('#scoreboard').empty()
        for(let it of data){
            $('#scoreboard').append(`
            <li class="list-group-item">
                ${it.name}<span class="badge">${it.score}</span>
            </li>`)
        }
        setTimeout(renewScoreboard,10*1000)
    })
}

renewScoreboard()