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

oose-sdk

v3.1.2

Published

OOSE development tools for applications

Downloads

111

Readme

oose-sdk Build Status

OOSE Software Development Kit

API Usage

$ npm install oose-sdk --save
'use strict';
var oose = require('oose-sdk')

oose.api.updateConfig({
  prism: {
    host: 'prism.oose.io',
    port: 5972
  }
})

//store the user session
var session = {}

//setup our api and login
var prism = oose.api.prism()
prism.postAsync({
  url: prism.url('/user/login'),
  json: {
    username: 'myusername',
    password: 'mypassword'
  }
})
  .spread(prism.validateResponse())
  .spread(function(res,body){
    console.log(body)
    session = body.session
  })
  .catch(prism.handleNetworkError)
  .catch(oose.NetworkError,function(err){
    console.log('A network error occurred: ' + err.message)
  })

Mock Usage

'use strict';
var oose = require('oose-sdk')

oose.api.updateConfig({
  prism: {
    port: 3001,
    host: '127.0.0.1'
  }
})

describe('my test',function(){
  before(function(){
    return oose.mock.start(3001,'127.0.0.1')
  })
  after(function(){
    return oose.mock.stop()
  })
  it('should be up',function(){
    var prism = oose.api.prism()
    return prism.postAsync(prism.url('/ping'))
      .spread(function(res,body){
        expect(body.pong).to.equal('pong')
      })
  })
})

Changelog

3.1.2

  • Prism jobDetail no longer users api.validateResponse as jobDetail may throw false errors just from reporting the job status

3.1.1

  • Remove UserError being thrown by validate response
  • Validate response will also now forward raw responses
  • Update tp promisepipe 2.1.1

3.1.0

  • Add Job API to Prism

3.0.1

  • Does not export the Shredder object. Job object coming in 3.1
  • Fix issues with mime 2.0 support
  • Update license file to match package.json of GPL3+

3.0.0

  • Updated to work with OOSE 3.0.0 which is switching to Couchbase
  • Implements Shredder into the OOSE system which has been renamed to Job

2.2.2

  • Upgrade dependencies
  • Fix bug with authentication mapping

2.2.1

  • Change mock structure to support the idea of the "hash" name for identifying files vs the "sha1" name that predetermined the type of hash being used.

2.2.0

  • Drop old access setup shortcuts that were related dynamic services
  • BREAKING CHANGE: api.prism(), api.store() need to replaced with api.setupAccess('prism',config.prism) and api.setupAccess('store',config.store)

2.1.0

  • Update dependencies and bluebird implementation

2.0.2

  • URL builder helpers no longer produce protocol forced URLs such as (http://)

2.0.1

  • Fix issue with keygen passing configuration params
  • Fix issue with Prism class wrongfully falling back on configuration params

2.0.0

  • Update packages and dependencies
  • Drop API methods removed in OOSE 2.0.0
  • passwordReset

1.4.1

  • Remove a mistakenly left console log.

1.4.0

  • Upgraded to run with node 4.x
  • Skipped version 1.3.x to match the main OOSE release of 1.4.0
  • Upgraded all dependencies
  • Fixed bug that causes timeout msecs not a number issue

1.2.0

  • Purchases now require the file extension and will no longer supply it this is a breaking change to all integrations.

1.1.10

  • Since node has started checking SSL certs without giving the user a chance to intervene we have to set rejectUnauthorized: false by default now. Have also had to add process.env.NODE_TLS_REJECT_UNAUTHORIZED = 0 unfortunately.

1.1.9

  • Fix issues using latest version of node request.

1.1.8

  • Use the domain to make prism requests to that SSL will validate properly.

1.1.7

  • Fixed issue with keygen getting installed as the ndt command

1.1.6

  • Enable sticky session support.
  • Add helper for generating session keys.
  • Prism login now takes username and password at call time prism.login(un,pw)

1.1.5

  • Drop user session timeout, they are now sticky

1.1.4

  • Fix and test error handling for validateResponse
  • Change default maxSocket to Infinity
  • Add session token name to setupSession call instead of config

1.1.3

  • Increase default max sockets

1.1.2

  • Expose more of the API subsystem so it can be extended properly

1.1.1

  • Actually export Prism helper
  • Added urlPurchase and urlStatic to Prism helper

1.1.0

  • Added Prism helpers to access Prisms
  • Added testing for new Prism helper
  • Added /content/retrieve
  • Added /user/session/renew

1.0.11

  • Add socket hang up to Network error messages

1.0.10

  • Add missing error message ESOCKETTIMEDOUT

1.0.9

  • api.handleNetworkError() now handles all TCP/IP unix errors
  • api.handleNetworkError() now maintains the original stack trace
  • Added testing for api.handleNetworkError()

1.0.8

  • Upgrade error objects with bluebird standards

1.0.7

  • Bug fix to api.handleNetworkError()

1.0.6

  • Better error catching in api.handleNetworkError()

1.0.5

  • SSL uses PEM instead of crt/key

1.0.4

  • Request wasn'st included as a dependency (was a dev dependency)

1.0.3

  • Fix typo in ssl options

1.0.2

  • Fixed issue with ssl options being populated by http server
  • Remove preceding slash on content.relativePath

1.0.1

  • Fix missing package for api helper

1.0.0

  • Initial Release