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

@arsx/net

v0.3.0

Published

A reactive networking library

Downloads

16

Readme

Reactive networking library

license npm downloads

A reactive networking library.

ATTENTION: API is unstable and may be changed in the future releases.

Installation

npm install -S rxjs @arsx/net

NetworkHandler

The NetworkHandler is the basic concept around which the entire architecture of the library is built. It can be some endpoint representing backend or a pass-through handler that can intercept and modify the data flowing through it.

const lengthBackend = (): NetworkHandler<string, number> =>
  (context) => (input) => of(input).pipe(map(str => str.length))

const backend = lengthBackend()
backend(context)('hello').subscribe(observer) // emits: 5, complete

NetworkInterceptor

Technically Interceptor is just a function taking a NetworkHandler and value, and return another NetworkHandler.

Interceptors are called in a chain from top to bottom, ending with backend.

There is withInterceptors function to help us to compose interceptors into a chain.

The defineInterceptor helper can be used to describe it as a function:

const debugInterceptor = defineInterceptor((
  next,    // next handler in chain
  input,   // input value
  context, // NetworkContext
) => {
  console.log('input:', input)
  return next(input).pipe(
    tap((output) => console.log('output:', output))
  )
)

const chain = withInterceptors([
  debugInteceptor,
], lengthBackend())

chain(context)('hello').subscribe(observer) // emits: 5, complete

NetworkContext

Every NetworkHandler contain context which keeps in closure. It can be accessed by interceptors.

// define context token with default value
const LOG_REQUEST = new NetworkContextToken<boolean>(() => true)

const logInterceptor = defineInterceptor((
  next, input, context,
) => {
  const shouldLog = context.get(LOG_REQUEST)

  if (!shouldLog) {
    console.log('input:', input)
  }
  
  return next(input)
)

const chain = withInterceptors([
  debugInteceptor,
], lengthBackend())

// create context and set necessary values
const context = new NetworkContext()
context.set(LOG_REQUEST, false)

chain(context)('hello').subscribe(observer) // emits: 5, complete

Http

Basic usage

// create client with default http backend
const http = new HttpClient()
http.get('<url>').subscribe(observer)
http.post('<url>').subscribe(observer)
http.send('PUT', { body: 'data' })
  .subscribe(observer)

Providing base url

// auto choose supporter api by platform
const http = new HttpClient(httpBackendFactory('http://example.com/some'))
// or use specifix api
const http = new HttpClient(xhrBackend('http://example.com/some'))
// or
const http = new HttpClient(fetchBackend('http://example.com/some'))

http.get('path').subscribe(observer)

HttpHandler

Type HttpHandler is just an alias for NetworkHandler<HttpRequest, HttpEvent>. In everything else it's the same NetworkHandler.

HttpInterceptor

Type HttpInterceptor is just an alias for NetworkInterceptor<HttpRequest, HttpEvent>. In everything else it's the same NetworkInterceptor.

Interceptors can be used whith any backends based on NetworkHandler concept.

// this interceptor compatible with any data type
const logInterceptor = (name: string) => {
  const tag = `[${name}]`
  return defineInteceptor((next, input, context) => {
    console.log(tag, '=>', request)
    return next(input).pipe(
      tap((response) => console.log(tag, '<=', response))
    )
  })
}

const http = new HttpClient(
  withInterceptor(
    logInterceptor('HTTP'),
  )(httpBackendFactory())
)

http.get('<url>').subscribe(observer)

Handy RxJs operators

const http = new HttpClient()
http.handle(request)         // handle is just a client's handler delegate
  .pipe(takeResponse())      // just filter HttpResponse from http events
  .pipe(takeBody())          // apply takeResponse() and then pluck body field from response
  .pipe(catchHttpError(...)) // catch only http errors and skip others
  .subscribe(observer)

JsonRpc

Basic usage

const rpcBackend = jsonRpcHttpAdapter(httpBackendFactory('https://example.com/api/rpc'))
const rpc = new JsonRpcClient(rpcBackend)

rpc.send<string>('user.getRoleName', '<uuid>')
  .subscribe(observer) // emit: 'BasicRole'

JsonRpcHandler

Type JsonRpcHandler is just an alias for NetworkHandler<JsonRpcRequest, JsonRpcResponse>. In everything else it's the same NetworkHandler.

JsonRpcInterceptor

Type JsonRpcInterceptor is just an alias for NetworkInterceptor<JsonRpcRequest, JsonRpcResponse>. In everything else it's the same NetworkInterceptor.

Interceptors always be applied before backend.

const rpcBackend = withInterceptors([
  logInterceptor('RPC')
], jsonRpcHttpAdapter(httpBackendFactory()))

Also we can apply to http backend its own middlewares:

const httpBackend = withInterceptors([
  logInterceptor('HTTP')
], httpBackendFactory())

const rpcBackend = withInterceptors([
  logInterceptor('RPC')
], jsonRpcHttpAdapter(httpBackend))

Roadmap

  • [ ] Support WebSockets.
  • [ ] Support Server-sent events.

TODO

  • [ ] Make detailed documentation.