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

bimplus-signalr-client

v0.0.15

Published

bim+ signalr client

Downloads

141

Readme

bimplus-signalr-client

bimplus-signalr-client is a javascript wrapper around SignalR

Quick Links

https://doc.allplan.com/display/bimpluspublic/Bimplus+Web+SDK+Reference

How to build

Install nodejs

http://www.nodejs.org/

Install local npm modules

Open up a normal command line (admin is not needed) and go to the bimplus-signalr-client folder

npm install

(whenever package.json has changed, you might to do this again)

Build BimplusSignalrClient

Library building process is using UMD (Universal Module Definition) output format so it's compatible with both cjs and amd module formats. The same library can be use in the client or on the server. Build process is using babel so it's possible to use new ES2015 code in source codes.

Library can be build in several ways as a dev or prod version. To run a dev build with source maps run:

npm run build

To build a prod version - uglified, minified run:

npm run build-prod

Pulish new release to npm (Hint: Before doing this npm login needs to be done and the package version adjusted) :

npm run npm-publish

Check content of npm package (result is bimplus-renderer@(version).tar.gz)

npm run npm-pack

Develop/Debug BimplusSignalrClient

goto your bimplus-signalr-client folder

npm link

goto your application folder which uses the bimplus-signalr-client

npm link bimplus-signalr-client

Do you changes in the bimplus-signalr-client and build

npm run build

or

npm run build-prod

Your app will automatically get the changes done

After developing it might be wise to unlink: goto your bimplus-signalr-client folder

npm unlink

goto your application folder which uses the bimplus-signalr-client

npm unlink bimplus-signalr-client
npm install

Unit testing

With every build output is copied also to the test folder. To run the unit tests go to the test subfolder and run :

npm install
npm run test

For more information see README.md inside the test folder

Documentation

bimplus-signalr-client uses npm documentation plugin for easy documentation generation. To generate a documentation please install documentation plugin via npm :

npm install -g documentation

To create documentation in html format go to your bimplus-signalr-client folder and run :

npm run build-doc

Documentation output will be in documentation folder

To create documentation in markdown format go to your bimplus-signalr-client folder and run :

npm run build-docMd

Documentation output will be in documentation/Bimplus_SignalR_doc.md file.

To create a markdown suitable for Confluence run script:

npm run build-docConf

This script will convert generated markdown into Confluence format. See console output for converted file name.

Content of the confluence file can be inserted into Confluence page :

  • start confluence page editation mode
  • choose Insert more content / {} Markup option from toolbar
  • in popup window choose to Insert Markdown format
  • copy content of the converted confluence markdown file into the field in Confluence
  • save it (Please note that page links doesn't work in page preview mode)