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

webrw

v1.0.3

Published

A simple read-write store for the Web Computer

Downloads

1

Readme

Readme

A proxy tool built in PHP that supports basic web http restful api ideas like get and set. It does implement a delete, but it is an internal feature. Results are in JSON format mainly because this tool is supposed to be used programatically (sometimes to get around the same origin policy issue)

License

FREE LICENSE. You can use this software as you see fit just remember to give me some credit. The Author of this tool will bear no liability for any damage that results from the use of this tool.

Prerequisites

  • PHP5 with curl library enabled

How to Install

  • Download the files and extract to the desired folder on your webserver
  • Change the permission on the WORKSPACE_DIRECTORY folder (default is "doc") to allow all to read and write chmod a+rw /PATH/TO/FOLDER/doc/
  • Go to the url you just created and without entering anything, you should get "Invalid action!!!"

Usage

get

GET RESULT AS JSON OBJECT

http://www.webrw-site.com?get=www.google.com

doc

GET RESULT IN RAW FORMAT

http://www.webrw-site.com?doc=www.google.com

set

Simple set operation

By entering the following

http://www.webrw-site.com?set=lalalalalalalala

you should get something similar to

callback("UID:e5lr859ffa6f73234ab14bcc9a2d5c1876d31fd1")

To retrieve your data you have two approaches

Raw Data

http://www.webrw-site.com/doc/UID:e5lr859ffa6f73234ab14bcc9a2d5c1876d31fd1

Returns

lalalalalalalala

As a JSON object

http://www.webrw-site.com/?get=UID:e5lr859ffa6f73234ab14bcc9a2d5c1876d31fd1

Returns

callback(["lalalalalalalala",""])

Append data value to an existing key

To append to an existing resource, simply add the "key" to the URL

http://www.webrw-site.com?set=lelelelelelelele&key=UID:e5lr859ffa6f73234ab14bcc9a2d5c1876d31fd1

Returns the same key (as expected)

callback("UID:e5lr859ffa6f73234ab14bcc9a2d5c1876d31fd1")

Now if you look at the key

http://www.webrw-site.com/doc/UID:e5lr859ffa6f73234ab14bcc9a2d5c1876d31fd1

you should get

lalalalalalalala

lelelelelelelele

Useful Notes

  • all include statements are in class.webrw.php, so if you plan to use something other than index.php, all you have to include is class.webrw.php