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

azurite

Package Overview
Dependencies
Maintainers
4
Versions
156
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

azurite

An open source Azure Storage API compatible server

  • 3.10.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
614K
increased by2.56%
Maintainers
4
Weekly downloads
 
Created

What is azurite?

Azurite is an open-source Azure Storage API compatible server (emulator). It provides a local environment for testing and development of applications that use Azure Storage services, including Blob, Queue, and Table storage.

What are azurite's main functionalities?

Blob Storage

This code snippet demonstrates how to start the Azurite Blob service on port 10000. Blob storage is used for storing large amounts of unstructured data such as text or binary data.

const azurite = require('azurite');
azurite().blob().listen(10000, () => {
  console.log('Azurite Blob service is running on port 10000');
});

Queue Storage

This code snippet demonstrates how to start the Azurite Queue service on port 10001. Queue storage is used for storing large numbers of messages that can be accessed from anywhere via authenticated calls.

const azurite = require('azurite');
azurite().queue().listen(10001, () => {
  console.log('Azurite Queue service is running on port 10001');
});

Table Storage

This code snippet demonstrates how to start the Azurite Table service on port 10002. Table storage is used for storing structured NoSQL data.

const azurite = require('azurite');
azurite().table().listen(10002, () => {
  console.log('Azurite Table service is running on port 10002');
});

Other packages similar to azurite

Keywords

FAQs

Package last updated on 18 Dec 2020

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