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

prism-vrc

v1.4.1

Published

> Prism은 VRC 맵 제작 패러다임을 바꿀 라이브러리입니다. >

Downloads

23

Readme

Prism-vrc

Prism은 VRC 맵 제작 패러다임을 바꿀 라이브러리입니다.

서론

기존의 VRC에서는 VideoPlayer를 통해 서버와 통신하는 것이 유일한 외부와의 커뮤니케이션 방법이었습니다.

저희는 여기서 아이디어를 얻어, 첫 번째 프로젝트인 IMOStream을 만들게 됩니다. 간단한 설명을 덧붙이자면, 이미지 파일을 url에 맞게 보내줄 수 있는 서버입니다.

여기서 더 나아가, 저희는 이미지 뿐만이 아닌 텍스트를 보내는 방법을 찾아냈습니다.

QR코드와 비슷하게 바이너리 데이터를 이미지로 표시해 VRC에 보내고, 이 이미지를 디코딩하여 텍스트 데이터를 얻을 수 있었습니다.

설치

npm install prism-vrc

or

yarn add prism-vrc

사용법

express 기준

import Prism from "prism-vrc";

app.get('/', async (req, res) => {
	res.writeHead(200, { 'Content-Type': 'video/mp4' });
	res.end(await Prism("Hello, world!"));
});

예제

prism-server-example