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

lua-learn

v1.0.10

Published

Lua-Learn(이하 모듈.)은 `루아`라는 디스코드 챗봇의 지식 데이터베이스를 공유합니다.<br> 모듈은 `루아 지식 API`를 호출하여 지식을 가져옵니다.

Downloads

16

Readme

Lua-Learn

Lua-Learn(이하 모듈.)은 루아라는 디스코드 챗봇의 지식 데이터베이스를 공유합니다. 모듈은 루아 지식 API를 호출하여 지식을 가져옵니다.

설치하기

$ npm i lua-learn
$ yarn add lua-learn
$ pnpm add lua-learn
$ bower install lua-learn

어떻게 사용하나요?

모듈을 사용하는 방법은 쉽습니다.

예시 코드 입니다.

<lua>.find({
    keyword: '안녕',
    sort: {
        order: 'ascending',
        rule: 'views'
    }
})
.then(data => {
    console.log(data);
})
.catch(error => {
    console.error(error.message);
});

루아 지식 데이터베이스의 모든 값을 불러오는 코드입니다.

<lua>.find()
.then(data => {
    console.log(data);
})
.catch(error => {
    console.error(error.message);
});

반환값

[
  {
    word: '루아야 안녕',
    reply: '안녕하세요!^^',
    user: '988397655761780767',
    timestamp: 1721701390,
    views: 0
  },
  {
    word: '안녕하세요',
    reply: '안녕하세요',
    user: '508569362110742569',
    timestamp: 1721692640,
    views: 0
  },
  {
    word: '안녕',
    reply: '뭐[edit,2000] 안녕하세요[name] 님!',
    user: '749496022224601128',
    timestamp: 1719316536,
    views: 11
  },
...
]

요청값

|이름|종류|필수 여부|설명| |:----:|:----:|:----:|:----:| |keyword|string|N|지식 키워드 값| |reply|string|N|지식 답변 값| |user|string|N|지식을 가르친 유저의 디스코드 ID| |sort|object|N|정렬| |sort.rule|string|N|정렬 기준| |sort.order|string|N|정렬 방식|

오류코드

|코드|설명|해결방안| |:----:|:----:|:----:| |404|API 페이지를 찾을 수 없음|API 서버 문제| |300|HTTP로 API 파싱 중 오류|인터넷 확인 및 재시도 또는 모듈 제설치| |200|모듈의 버전이 최신 버전이 아님|모듈 재설치|

모듈에 문제가 있나요?

오류 및 피드백은 아래 디스코드 서버로 문의해 주세요!!

https://discord.gg/NTZj5Xuq3S

P.S.

다음 업데이트로 지식 업로드를 예정중입니다.. 다른 봇의 지식을 루아 지식 데이터베이스에 업로드 할수 있어요. 빠른 업데이트 알림을 위해 디스코드 서버에 참여하세요!