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

koishi-plugin-adapter-minecraft-miaokoishi

v0.0.8

Published

一个 Minecraft 适配器 通过 MiaoScript 的 MiaoKoishi 链接

Downloads

155

Readme

koishi-plugin-adapter-minecraft-miaokoishi

npm

一个 Minecraft 适配器 通过 MiaoScript 的 MiaoKoishi 链接

Minecraft 服务器 插件安装教程

  • 关闭服务器
  • 下载 MiaoScript 插件 https://github.com/circlecloud/MiaoScript/releases
  • 丢到 plugins 目录
  • 新建目录 plugins/MiaoScript
  • plugins/MiaoScript 目录下 新建文件 channel 并且写入 beta
    • Linux 可以直接 echo beta > channel
  • 启动服务器 等待下载依赖
  • 启动完成后执行 /mspm install MiaoKoishi
  • 安装后 配置插件
# Koishi 显示名称
name: '我的世界服务器'
# 机器人ID 需要匹配 Koishi 那边的值
selfId: minecraft
# 机器人显示头像
avator: https://www.minecraft.net/etc.clientlibs/minecraft/clientlibs/main/resources/apple-icon-76x76.png
# 频道ID 可以自定义 默认 UUID 生成
guildId: 4c858b72-xxxx-xxxx-xxxx-ae62c6fdd0a5
# 认证 Token 需要和 Koishi 配置一致
token: 4c858b72-xxxx-xxxx-xxxx-ae62c6fdd0a5
# 链接协议 支持 `ws` 和 `ws-reverse`
protocol: ws
# 此处三个配置 当 protocol 为 ws 时有效
# 链接地址 path 需要匹配 Koishi 插件配置
address: wss://demo.koishi.chat/miaokoishi
# 是否断线重连
auto_reconnect: true
# 重连间隔
reconnect_interval: 3000
# 此处配置 当 protocol 为 ws-reverse 时有效
# 监听地址
path: /koishi
  • 执行 mspm reload MiaoKoishi 重载插件配置

Koishi 插件配置教程