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

digiasset_ipfs_metadata_server

v0.1.0

Published

Clones DigiAsset Meta Data so there are many sources.

Downloads

4

Readme

##Step 1 (Install IPFS Desktop):

  1. Follow instructions at https://docs.ipfs.io/install/ipfs-desktop/
  2. Forward port 4001 to this machine
  3. If planning to run this all the time you may want to set IPFS to run on boot. In linux I did that by running crontab -e and adding @reboot /usr/local/bin/ipfs daemon

##Step 2 (Install NodeJS):

  1. Follow instructions at https://nodejs.org/en/download/

##Step 3 (Install this app):

  1. Copy files to a folder
  2. In console run npm install

##Step 4 (Create API Key):

  1. Create an account at https://aws.amazon.com/
  2. Services->IAM
  3. In left column: Policies
  4. Blue Create policy button
  5. JSON
{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "VisualEditor0",
            "Effect": "Allow",
            "Action": [
                "s3:GetObjectAcl",
                "s3:GetObject",
                "s3:ListBucket"
            ],
            "Resource": [
                "arn:aws:s3:::*/*",
                "arn:aws:s3:::chain-data-address"
            ]
        }
    ]
}
  1. Blue Review policy button
  2. name: digiassetX_data
  3. Blue Create policy
  4. In left Column: Groups
  5. Blue Create Group Button
  6. Group Name: digiassetX_data
  7. Type digi into search then select digiassetX_data
  8. Blue Next Step Button
  9. Blue Create Group Button
  10. On left panel select Users
  11. Blue add user button
  12. user name: digiassetX_data
  13. Select: Programmatic access
  14. Blue Next: Permissions button
  15. select: digiassetX_data
  16. Blue Next: Tags button
  17. Blue Next: Review button
  18. Blue Create user button
  19. Copy Access key ID and Secret access key into config/config.js
  20. click Close(make sure you have copied keys there will not be a second chance.

##Step 5 (Edit config):

  1. Open config/config.js
  2. Under includeMedia set the max file size you are willing to accept and what file types. If you will accept all files just comment out the names and mimeTypes lines by putting // before them
  3. The rest of the lines you will likely not want to change. Save the file.

##Step 4 (Run the program):

To run once
  1. in a command line type node index.js
To run continuously in the background in linux
  1. Install PM2 by following instructions at https://www.vultr.com/docs/how-to-setup-pm2-on-ubuntu-16-04
  2. Add the app by running pm2 start index.js --name meta
  3. To save so it starts on next boot pm2 save
  4. You can check console logs by typing pm2 log meta

#Step 5 (View Loaded Meta Data):

  1. Open a web browser
  2. In the address bar not the search bar enter http://127.0.0.1:8090/
  3. You can now view any meta data that has been stored to your server, mark it as acceptable and delete content that is offensive.