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

mongoose-erd-generator

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mongoose-erd-generator

Mongoose-erd-generator ===============================

  • 0.0.1
  • npm
  • Socket score

Version published
Weekly downloads
140
increased by97.18%
Maintainers
1
Weekly downloads
 
Created
Source

Mongoose-erd-generator

NodeJS Buffer interface provides a way to manipulate bytes, but what if we needed to manipulate bits?

This library was created to address the gap of a built-in bit interface.

Build Status bitHound Dependencies bitHound Overall Score issues stars license

Installation

npm install bitview --save

Initializing a view

new BitView(Length)
new BitView(buffer)
new BitView(buffer, byteOffset, length);
Buffer.from(arg)
Parameters:
length: length in bits
buffer: use an existing buffer
arg: Another interface to create a new BitView instance
arg could be an array of bits [1,0,1] or a string '1010' or a buffer.
byteOffset: default 0, starting offset of the bitview.

Methods

.flip(pos)

flips the value of the bit at location pos

.get(pos)

Returns the value of the bit at location pos  (0 or 1)

.set(pos,v)

Sets the value of a bit at location pos to v

.toString()

  Returns a string representation of the BitView.

.toBuffer()

Returns the buffer used by the view.

Properties

.length

Returns length in bits.

Usage:

const BitView = require("bitview")

const view= new BitView(10);

view.set(0,true);
console.log(view.get(0)); // true
view.flip(0)
console.log(view.get(0)); // false

const view2=BitView.from('101010');
console.log(view2.get(2)); // true

const view3=BitView.from([1, 0, 1]);
console.log(view3.get(1)); // false
console.log(view3.get(2)); // true

Implementation

BitView uses bitwise operations to manipulate each bit in a buffer (Low Complexity)

FAQs

Package last updated on 26 May 2018

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