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

pubble-wapo-deployer

v1.0.1

Published

The Pubble WaPo deployer is used to simplify the generation and management of the deploy codes for the Pubble live chat widget (main widget body, featured stream and promoted stream) required for the WaPo Live Chat pages.

Downloads

4

Readme

Installation

The Pubble WaPo deployer is used to simplify the generation and management of the deploy codes for the Pubble live chat widget (main widget body, featured stream and promoted stream) required for the WaPo Live Chat pages.

Using npm:

$ npm i pubble-wapo-deployer

If reference local tgz package in dependencies entry in package.json

 "dependencies": {
    "pubble-wapo-deployer": "file:./pubble-pipes-x.x.x.tgz"
  },

Note: add --save if you are using npm < 5.0.0

In Node.js:

// Load the full build.
const wapoDeployer = require("pubble-wapo-deployer");

const appId = "007", locale = "cs-CZ", noiframe =  false, auth = "", customCss = "wapo_css_demo";
/** 1. The method generates the main app deploy code snippet with different options.
With different options passed to the method, we generate deploy code with related div attributes in the main deploy div.
**/
const deployDiv = wapoDeployer.getDeployDiv({
  appId: appId, // your appId, required
  locale: locale, // (optional) zh_CN, ro, pt_PT, nl_NL, ko_KR, it_IT,hu_HU, es_ES, cs_CZ,ru...
  noiframe: false, // render widget without iframe(optional)
  auth: auth, // your sso auth payload(optional)
});

// 2. Method generates the promoted stream container div code snippet
const deployDiv = wapoDeployer.getPromotedDiv(customClass);

// 3. Method generates the featured stream container div code snippet
const featuredDiv = wapoDeployer.getFeaturedDiv(customClass);

// 4. Method generates the url of app loader js
const loaderJs = wapoDeployer.getAppLoaderJs();

// 5. Method generates the tag of app loader js
const appLoaderTag = wapoDeployer.getAppLoaderTag();

Instruction:

Call method 1, 2, 3 (2 and 3 are optional) and insert generated divs to specific sections on your page. Get loader js url from method 4 and create js object OR call method 5 to get loader tag and insert to dom.

Note: Please follow the steps and divs have to be injected to the page before loader js. Method2 and method3 are only used for generating div containers required in wapo new chat UI.