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

apocket-lib

v6.2.4

Published

Client for apocket-api

Downloads

6

Readme

aPocket Library

The official client library for [apocket-api] (https://github.com/arisebank/apocket-api).

Description

This package communicates with APWS aPocket API using the REST API. All REST endpoints are wrapped as simple async methods. All relevant responses from APWS are checked independently by the peers, thus the importance of using this library when talking to a third party APWS instance.

See [aPocket-CLI] (https://github.com/arisebank/apocket-cli) for a simple CLI wallet implementation that relays on APWS and uses apocket-lib.

Get Started

You can start using apocket-lib in any of these two ways:

  • via Bower: by running bower install apocket-lib from your console
  • or via NPM: by running npm install apocket-lib from your console.

Example

Start your own local aPocket API instance. In this example we assume you have apocket-api running on your localhost:3232.

Then create two files jr.js and sf.js with the content below:

jr.js

var Client = require('apocket-lib');


var fs = require('fs');
var APWS_INSTANCE_URL = 'https://apocket.network/apws/api'

var client = new Client({
  baseUrl: APWS_INSTANCE_URL,
  verbose: false,
});

client.createWallet("My Wallet", "Irene", 2, 2, {network: 'testnet'}, function(err, secret) {
  if (err) {
    console.log('error: ',err);
    return
  };
  // Handle err
  console.log('Wallet Created. Share this secret with your pocketeers: ' + secret);
  fs.writeFileSync('jr.dat', client.export());
});

sf.js


var Client = require('apocket-lib');


var fs = require('fs');
var APWS_INSTANCE_URL = 'https://apocket.network/apws/api'

var secret = process.argv[2];
if (!secret) {
  console.log('./sf.js <Secret>')

  process.exit(0);
}

var client = new Client({
  baseUrl: APWS_INSTANCE_URL,
  verbose: false,
});

client.joinWallet(secret, "Tomas", {}, function(err, wallet) {
  if (err) {
    console.log('error: ', err);
    return
  };

  console.log('Joined ' + wallet.name + '!');
  fs.writeFileSync('sf.dat', client.export());


  client.openWallet(function(err, ret) {
    if (err) {
      console.log('error: ', err);
      return
    };
    console.log('\n\n** Wallet Info', ret); //TODO

    console.log('\n\nCreating first address:', ret); //TODO
    if (ret.wallet.status == 'complete') {
      client.createAddress({}, function(err,addr){
        if (err) {
          console.log('error: ', err);
          return;
        };

        console.log('\nReturn:', addr)
      });
    }
  });
});

Install apocket-lib before start:

npm i apocket-lib

Create a new wallet with the first script:

$ node jr.js
info Generating new keys
 Wallet Created. Share this secret with your pocketeers: JbTDjtUkvWS4c3mgAtJf4zKyRGzdQzZacfx2S7gRqPLcbeAWaSDEnazFJF6mKbzBvY1ZRwZCbvT

Join to this wallet with generated secret:

$ node sf.js JbTDjtUkvWS4c3mgAtJf4zKyRGzdQzZacfx2S7gRqPLcbeAWaSDEnazFJF6mKbzBvY1ZRwZCbvT
Joined My Wallet!

Wallet Info: [...]

Creating first address:

Return: [...]

Note that the scripts created two files named jr.dat and sf.dat. With these files you can get status, generate addresses, create proposals, sign transactions, etc.