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

@screepsmod/auth

v1.1.0

Published

> 本项目为 screeps 私服 <https://screeps.devtips.cn> 添加了使用**用户名**和**密码**进行验证的功能。

Downloads

7

Readme

@screepsmod/auth

本项目为 screeps 私服 https://screeps.devtips.cn 添加了使用用户名密码进行验证的功能。

安装

  1. 在服务器的 screeps 安装目录运行 npm install @screepsmod/auth

使用

通过 web 浏览器设置

  1. 打开 steam 客户端,登录到私服(此步骤用来初始化账号信息)
  2. 浏览器打开 http://screeps.devtips.cn:21025/authmod/password/
  3. 输入密码
  4. 点击 使用 Steam 登录
  5. 当 Steam 授权成功后,密码设置成功

使用 Server CLI

  1. 打开 screeps server CLI (在服务器上运行 npx screeps cli 或者通过 Steam Server UI)
  2. 执行 setPassword('Username', 'YourDesiredPassword')
  3. 现在你可以通过 API 来登录到服务器了

API

config.auth.authUser(username,password)

返回 Promise,运行结果为 user object 或者在失败的时候返回 false

使用 Github 登录

使用 GitHub 登录需要在 .screepsrc 文件中添加 github client id 和 client secret (也可以通过设置 GITHUB_CLIENT_IDGITHUB_CLIENT_SECRET 环境变量)

将回调链接(callback url)设置为 /api/auth/github/return。例如 http://screeps.devtips.cn:21025/api/auth/github/return

GitHub 的 client id 和 client secret 可以在 GitHub 设置页中看到 https://github.com/settings/developers

.screepsrc

[github]
clientId = <clientId>
clientSecret = <clientSecret>

鸣谢

本项目基于 [email protected] 做了修改和汉化。