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

qiwi

v0.1.5

Published

Client for QIWI

Downloads

34

Readme

QIWI

Easy and lightweight client for QIWI payment system.

Features

This library is THE FIRST open source client for QIWI.

Currently this library is in development, so not all may work as expected.

Installation

$ npm install qiwi

Usage

QIWI = require('qiwi')

client = new QIWI.Client()

client.createSession((error, session) ->
	unless error?
		client.setSession(session)

		client.accountInfo((error) ->
			unless error?
				console.log('Your account details:')
				console.log(info)
			else
				console.log('Something went wrong:')
				console.log(error)

			undefined
		)
	else
		console.log('Unable to open session')
		console.log(error)

	undefined
)

API

Class Client

This class represents client for QIWI.

::SERVER_NAME

  • String Default w.qiwi.com

Default server name or IP address for connections to.

::SERVER_PORT

  • Number Default 443

Default server port for connections to.

::REQUEST_CHARSET

  • String Default utf-8

Charset which will be used by client while sending requests.

::constructor(options)

Description will be added.

.setHeader(name, value)

  • name String
  • value String

Sets HTTP header with pointed name and value for subsequent requests.

.removeHeader(name)

  • name String

Removes header with pointed name.

.createSession(publicKey, callback)

  • publicKey Buffer | String
  • callback Function | null

Establishes new encrypted sesssion.

You need to specify publicKey which currently is the same for all clients and can be loaded from ./qiwi.pub. This function generates symmetric key for AES-256, encrypts it using publicKey and sends to the server. Session object will be passed to callback. In order to make other calls you should install session into client using setSession.

The schema described above is similar to SSL in general states.

.setSession(session)

  • session Object

Sets session object for subsequent requests.

.removeSession()

Removes stored session from client.

.setExtra(name, value)

  • name String
  • value Number | String | Boolean | null

Sets extra field with name and value to be sent to the server on each request.

.removeExtra(name)

  • name String

Removes field identified by name.

.setAuth(token, terminalId)

  • token String
  • terminalId String | undefined

Sets token and terminalId for subsequent requests.

.removeAuth()

Removes previously stored token and terminal ID.