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

memkey

v1.0.0

Published

Memory Key tool ---

Downloads

2

Readme

Memory Key tool

Memkey is a simple command line tool to ease the creation of Ethereum private and public keys that can rely on the owner's memory.

Use this tool if:

  • You want to be able to recover your Ethereum Private Key by yourself
  • Prefer to have a secret passphrase as the seed of your private key instead of random content
  • Don't want to depend on third party wallets to handle your money
  • Expect your computer's disk, smartphones, dongles, etc. not to last forever

Installation

After you install NodeJS:

npm install -g memkey

Usage

Private Key

Generate a private key and public address from your passphrase:

$ memkey from "my hopefully long passphrase"
Ethereum Memory Key Tool

Passphrase:     my hopefully long passphrase
Private Key:    cb738ca99e9c5b646806227749c6623a0c576b9a7d7994aa5e5615c458d805f0
Public Address: 0x882458d0e7fb8a927983a64e9177fc0977604817

Important: Make sure that you will be able to remember this exact passphrase (or store the private key in a safe place otherwise).

Important: The passphrase is case sensitive.

Public address

To get the public address from an Ethereum private key:

$ memkey addr cb738ca99e9c5b646806227749c6623a0c576b9a7d7994aa5e5615c458d805f0
Ethereum Memory Key Tool

Public Address: 0x882458d0e7fb8a927983a64e9177fc0977604817

As expected, given the private key we generated before, the public address is exactly the same as the one above.

Future

In order to avoid versioning confusion and private key mismatch, any future release/algorithm of memkey will use a different package name (memkey2, memkey3, etc.) instead of forcing to manually install specific npm versions like [email protected].

No updates will break the current setup.

Disclaimer

  • Ethereum coins (Ether) represent a highly-volatile market (as of 2017). Operate at your own risk.
  • This tool is intended for early adopters with a minimum level of tech skills.
  • The correct use of this tool and the keys generated with it is your own responsibility.

Credits

Jordi Moraleda