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

@labshare/services

v5.0.1

Published

LabShare API Service Manager

Downloads

1,043

Maintainers

sunnielyusunnielyufithi100fithi100yifanzhuyifanzhuartemnihartemnihjeyaramanjeyaramanjamilomarjamilomarcaok2709caok2709ozairsajidozairsajidrafaelcalpenarafaelcalpenadkrantsbergdkrantsbergrameshsubramaniamrameshsubramaniammapleknightmapleknightninabina921ninabina921kanna1008kanna1008chandgichandgiafriedman111afriedman111kallevkallevlabshare-svclabshare-svckeatskkeatsknevans05nevans05bavithrabavithrabizhuhebizhuhesaradharadhar06saradharadhar06ayang-axleayang-axlecharlie.daocharlie.daovictornovichkovvictornovichkovjcaxlejcaxlenishaqnishaqmqureshi12mqureshi12naveen2569naveen2569aishwaryamsutaraishwaryamsutarglabbateglabbatehamshkhawarhamshkhawarakshat.sainiakshat.sainishaharyarjafrishaharyarjafrincatssvcdvopsncatssvcdvopssridharvuyyuru840sridharvuyyuru840ksrohinikumarksrohinikumarvenkatadhatrivenkatadhatrivishal12_1vishal12_1shikharseth93shikharseth93mothukuril2mothukuril2pruthvi.rajpruthvi.rajniaaa-azops-npmjsniaaa-azops-npmjsjijo070jijo070aadmraadmrbomar24bomar24hassan-badathassan-badatdenzelcodedenzelcodes-n-is-n-isvc-polussvc-polusktaletskktaletskdjvargasdjvargasabhishek.tyagi1abhishek.tyagi1ishan_codeishan_codefaisalkhandeveloperfaisalkhandevelopersurbhi.goel.appinventivesurbhi.goel.appinventivethomas.ayelethomas.ayelejason.smith_axleinfojason.smith_axleinfobenni-taylorbenni-tayloraniket_sharmaaniket_sharmaupryshchep-ranchoupryshchep-ranchovipinshavipinshafredromfredromvishal.saxenavishal.saxenaaliaksandr.litvinau.lxaliaksandr.litvinau.lxvarun_gargvarun_gargjessedu6jessedu6lbrown323lbrown323ttran65ttran65mabdi3mabdi3rachel12097rachel12097kyxyeskyxyesshafiqsshafiqssudarsanrajusudarsanrajulpsstereotiplpsstereotipmiki1100miki1100lokeshdasarilokeshdasarivishakhagvishakhagthainam83vnthainam83vnzhaot3zhaot3sulochana-nunnasulochana-nunnavasudhajastivasudhajastimeenalyengulmeenalyenguljosuerc026josuerc026fuentertfuentertmanisha.kumarimanisha.kumarianilkuchi1anilkuchi1alexf4devalexf4devleoriofrioleoriofrioavmathavmathkewal.axlekewal.axlekpaysonkpaysonvanleaxlevanleaxleshaurya2704shaurya2704pbsudharsanpbsudharsanwebnetweaverwebnetweaverknwokoloknwokolovladnihvladnihsrivallikasrivallikajerasjerasefabyefabydikshithdikshithryan-labshareryan-labshareted-zhang66ted-zhang66jesse.barkdolljesse.barkdollyisus_devyisus_devmeppielmeppielviveksiddineniviveksiddinenimateo4axlemateo4axlesevaasevaaskasimiskasimisuhascsuhascsabrina11068sabrina11068mohamedouladimohamedouladizhangknihzhangknihsgajjellysgajjellygourang97gourang97lynna.nguyenlynna.nguyenshawnl96shawnl96farhadsaadatpeifarhadsaadatpeirajeshjampana83rajeshjampana83alex_barciaalex_barcianicholas-schaubnicholas-schaubbrettlaymanbrettlaymannlysovaxnlysovaxkananaxlekananaxlereidsreidssowmya_gsowmya_gnaimjones16naimjones16swazonicswazonicmdegraw8mdegraw8ivorontcovivorontcovalejandrodelgadoalejandrodelgadochirag_gargchirag_gargshikhar_sethshikhar_sethshubh_npmjsshubh_npmjsnitish.kumar1nitish.kumar1yshkvarokyshkvaroknitiinsnitiinsaartiappinventivaartiappinventivjefflab428jefflab428shivam-yadavshivam-yadavkevinpatrickhannonkevinpatrickhannonkushalt93kushalt93varunmullinsvarunmullins

Keywords

Readme

Coverage Status Build Status semantic-release codecov

LabShare Services

Usage

npm i @labshare/services

const {Services} = require('@labshare/services');

let options = {
    // Override default options. 
    // The available configuration options are described in the "Configuration" section below.
};

let services = new Services(options);

services.config(({app, services}) => {
   // Optionally perform additional customization of the Express app initialized by Services and the loaded routes
   // Example (adds Express.js compression middleware):
   app.use(compression());
});

// Start up the server with all the loaded HTTP and Socket APIs
services.start();

Configuration

Configuring LabShare Services

Environment Variables

LabShare Service Plugins

Example plugin usage

const {Services} = require('@labshare/services');
const servicesAuth = require('@labshare/services-auth');

const services = new Services({/* options */);

services.config(servicesAuth({/* options */}));

Default HTTP Routes

Versions

GET /<service-path>/versions

Response

{
   "buildVersion":"v2017.0914.5",
   "versions": [
       {"api":"ls", apiDetails":{"name":"labshare","version":"v0.17.0631","description":"LabShare Services"}}
   ]
}

Example: http://localhost:8000/versions

API Explorer

GET /<service-path>/explorer

Response

Swagger HTML page providing documentation for endpoints across all API packages

Example: http://localhost:8000/explorer

Working with LabShare APIs

Running APIs

Running Loopback APIs

Creating HTTP APIs

Creating Socket APIs

Managing APIs with PM2

Development

  1. Install Node.js.
  2. npm i -g lsc
  3. Run npm install inside the Service's root directory to install its dependencies.

Tests

npm test

LoopBack