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

scloudjs

v1.2.6

Published

I remade old [Scloudjs](https://github.com/xxXFreezerXxx/ScloudJS) for better usability like make it able to use it as a package, better interface and so on. [説明(日本語版)](https://github.com/xxXFreezerXxx/newscloudjs/wiki/Description%5B%E6%97%A5%E6%9C%AC%

Downloads

24

Readme

NEW ScloudJS

I remade old Scloudjs for better usability like make it able to use it as a package, better interface and so on.
説明(日本語版)

requirements

Node.js (Should be new and stable version)

Usage

  1. Setup & Download package
npm init -y
npm i scloudjs
  1. Create javascript and write a few codes

Code examples

const scloudjs = require("scloudjs"); //Able to use ScloudJS as a module
let clouddatas = new Object();//Cloud variable's data will be written here
clouddatas = scloudjs.setpredata(["CLIENT","HOST_1"]);//Name of cloud datas(optional)

const process = (data)=>{//Codes you want to run when you received a message from server
   const temp = scloudjs.parsedata(data,clouddatas);//sort datas
   clouddatas = temp.clouddatas;//Cloud variable's data
   const changedlists = temp.changedlists;//List of cloud variables that has been changed
   scloudjs.sendtocloud("HOST",19);//Change value "HOST" to 19
   clouddatas["HOST"].value = 19 //Config your object because you'll not receive message when you send datas.
};

scloudjs.setdatas("username","password:","project id",process);//Config some datas

const func = async()=>{//run

    await scloudjs.login();//Login to scratch
    await scloudjs.connect();//Connect to scratch server
    await scloudjs.handshake();//connect to your project
};
func();

etc

I recommend to useScloudJS GUI Edition if you don't have enough coding skills.

credit

libraries used : ws