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

@saxolab/ispec

v0.0.2

Published

Create acceptance reports for new cloud services.

Downloads

3

Readme

Todo

  • [ ] Create typescript library @saxolab/ispec

  • [ ] Create diff library

    • [ ] Change return type to

      {
        path : 'Snapshots.Rows[3].Display.Currency', 
        cloud: undefined, 
        legacy: 'GB'
      }
    • [ ] Create diff of arrays, and nested objects

    • [ ] How to handle when arrays have a mismatch of elements

  • [ ] Move config to env variables and cli params

This is a tool for creating acceptance reports for new cloud services.

Features

  • Auto generate tokens
  • Publish reports to wiki
  • Generate markdown by running on local
  • use as cli tool or library

How to use

  • Declarative Style :
    • Create a simple javascript file, set env variables and run using cli
  • Library Style :
    • Create purly custom logic by using individual components like
      • SaxoApiClient
      • SaxoTokenGenerator
      • Report API
      • WikiPublisher
      • Diff Calculator

Declarative Style

Install project globally

npm i -g saxolab/ispec

Create script exchange-rate.ispec.js

const currencyPairsToTest = [
  "USDINR",
  "INRDKK",
  "XYZABC",
  "usdInR",
  "usdinr"
];

module.exports =  async({client, wiki, reports, diff, config, files}) => {

  await Promise.all(currencyPairsToTest.map(async (currencyPair) => {
    const report = reports.create();
    report.AddHeading(currencyPair);

    const cloudResponse  = client.get(`cloud-url/prices/v1/exchangerates?pair=${currencyPair}`);

    const onPremResponse  = client.get(`on-prem-url/prices/v1/exchangerates?pair=${currencyPair}`);

    const diff = diff.compare({legacy : onPremResponse.data, cloud: cloudResponse.data});

    // Create heading for table in report
    const table = diff.map(d => {
      return {
        'Field Name': d.fieldName,
        'Value on cloud': d.cloudValue,
        'Value on premises': d.legacyValue,
      };
    });

    report.addTable(table);

    // Publish report on wiki
    wiki.publish(currencyPair, config.exchnageRatePage, report.getHtml());

    files.save(`${currencyPair-cloud.json}`, cloudResponse.data);
    files.save(`${currencyPair-onprem.json}`, onPremResponse.data);

    // Save markdown to view on local
    files.save(`${currencyPair-report.md}`, report.getMarkdDown());
  }));
}

Running spec

// Set WIKI_TOKEN env variable
ispec exchange-rate.ispec.js env=tst211 publish=true

Library Style

import ispec from 'saxolab/ispec';

const {client, wiki, reports, diff, config, files} = ispec.initialize();

const currencyPairsToTest = [
  "USDINR",
  "INRDKK",
  "XYZABC",
  "usdInR",
  "usdinr"
];

(async() => {

    await Promise.all(currencyPairsToTest.map(async (currencyPair) => {
      const report = reports.create();
      report.AddHeading(currencyPair);

      const cloudResponse  = client.get(`cloud-url/prices/v1/exchangerates?pair=${currencyPair}`);

      const onPremResponse  = client.get(`on-prem-url/prices/v1/exchangerates?pair=${currencyPair}`);

      const diff = diff.compare({legacy : onPremResponse.data, cloud: cloudResponse.data});

      // Create heading for table in report
      const table = diff.map(d => {
        return {
          'Field Name': d.fieldName,
          'Value on cloud': d.cloudValue,
          'Value on premises': d.legacyValue,
        };
      });

      report.addTable(table);

      // Publish report on wiki
      wiki.publish(currencyPair, config.exchnageRatePage, report.getHtml());

      files.save(`${currencyPair-cloud.json}`, cloudResponse.data);
      files.save(`${currencyPair-onprem.json}`, onPremResponse.data);

      // Save markdown to view on local
      files.save(`${currencyPair-report.md}`, report.getMarkdDown());
    }));

  }
)();

CLI options

| Parameter | Required/Optional | | | --------- | ----------------------------------------------- | ------------------------------------------------------------ | | env | required if API_TOKEN env variable is not set | Used to get token. Valide values can be env=red, env=blue, env=tst231, or any DTE instance supported by assumption service | | publish | optional (default is false) | If not set to true, wiki will not be updated | | wikiUrl | optional (defaults to https://wiki) | |

Environment variables

| Env name | Required/Optional | | | ------------ | ----------------------------------- | ---- | | WIKI_TOKEN | required if cli parampublish=true | | | API_TOKEN | required if env not provided | | | WIKI_URL | | |

WIKI_TOKEN