Socket
Socket
Sign inDemoInstall

@sanity/observable

Package Overview
Dependencies
Maintainers
7
Versions
422
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sanity/observable

A small-ish RxJS based Observable implementation for Sanity


Version published
Maintainers
7
Created
Source

@sanity/observable

A small-ish RxJS based Observable implementation for Sanity

Installation

npm install --save @sanity/observable

Usage

import Observable from '@sanity/observable'

Observable
    .of('Foo, bar, SKIP, Baz')
    .flatMap(str => str.split(/,\s*/))
    .filter(word => word !== 'SKIP')
    .map(word => word.toUpperCase())
    .flatMap(word => Promise.resolve(`prefix-${word}`))
    .subscribe(prefixedWord => {
      console.log(prefixedWord)
    })

// => 'prefix-FOO'
// => 'prefix-BAR'
// => 'prefix-BAZ'

A minimal Observable

For bundle size sensitive contexts there is an absolute minimal observable implementation (still RxJS based) that can be imported from @sanity/observable/minimal. This observable has none of the static methods (create, from), and implements only the map, filter and reduce instance methods. It weighs around 3.3 KB minified and gzipped.

import Observable from '@sanity/observable/minimal'

new Observable(observer => {
  ['tiger', 'lion', 'SKIP', 'cheetah'].forEach(word => {
    observer.next(word)
  })
  observer.complete()
})
  .filter(word => word !== 'SKIP')
  .map(word => word.toUpperCase())
  .reduce((wordLengths, word) => {
    wordLengths[word] = word.length
    return wordLengths
  }, {})
  .subscribe(wordLengths => {
    assert.deepEqual(wordLengths, {TIGER: 5, LION: 4, CHEETAH: 7})
  })

License

MIT-licensed

FAQs

Package last updated on 08 Dec 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc