Socket
Book a DemoInstallSign in
Socket

@ms-cloudpack/json-utilities

Package Overview
Dependencies
Maintainers
2
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ms-cloudpack/json-utilities

Helpers for reading/writing json files.

latest
npmnpm
Version
0.1.11
Version published
Weekly downloads
383
-31.12%
Maintainers
2
Weekly downloads
 
Created
Source

@ms-cloudpack/json-utilities

Helpers for reading/writing json files.

Usage

import { readJson, writeJson } from '@ms-cloudpack/json-utilities';

async function start() {
  const result = (await readJSON(`path/to/file.json`)) || defaultValue;
}

const app = createExpressApp([5000, 5001], (app) => {
  // Set up routes.
  app.get('*', async (req, res) => {
    res.send(`<html>...</html>`);
  });
});

// Stop app when you're done.
app.close();

FAQs

Package last updated on 13 Aug 2025

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