Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ltstrg

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ltstrg

Simpler storage for your test experience!

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
291
increased by127.34%
Maintainers
1
Weekly downloads
 
Created
Source

LiteStorage - ltstrg

Simpler storage for your test experience!

Install

npm i ltstrg

How to use

Let's assume you want to make a JSON stroage which storing data via localStorage.

import { LiteStorage, localLiteStorage, MemoryLiteStorage } from 'ltstrg'

class JSONStorage {
  liteStorage: LiteStorage

  constructor(liteStorage: LiteStorage) {
    this.liteStorage = liteStorage
  }

  setData(key: string, value: any) {
    this.liteStorage.setItem(key, JSON.stringify(value))
  }

  getData(key: string) {
    return JSON.parse(this.liteStorage.getItem(key))
  }
}

// Implement
const myStorage = new JSONStorage(localLiteStorage)
myStorage.setData('someData', { some: 'data' })

// Test
describe('JSONStorage', () => {
  it('do something 1', () => {
    // Mock localLiteStorage with MemoryLiteStorage
    const myStorage = new JSONStorage(new MemoryLiteStorage())
    ...
  })

  it('do something 2', () => {
    // So you don't need to clean up lite storage in next tests.
    const myStorage = new JSONStorage(new MemoryLiteStorage())
    ...
  })
})

APIs

LiteStorage

An interface has same apis of Web Storage. The only difference is that it is not exposing any values directly. So you always have to use #getItem method to retrieve data.

localLiteStorage

A wrapper for localStorage.

MemoryStorage

A LiteStorage, using native Map to store data.

You can access the map via MemoryStorage#map for debugging.

License

MIT

Keywords

FAQs

Package last updated on 07 Sep 2019

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