Socket
Socket
Sign inDemoInstall

@aws-cdk/service-spec-types

Package Overview
Dependencies
1
Maintainers
2
Versions
69
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @aws-cdk/service-spec-types

Types for CloudFormation Service Specifications


Version published
Weekly downloads
81K
increased by11.35%
Maintainers
2
Install size
203 kB
Created
Weekly downloads
 

Readme

Source

@aws-cdk/service-spec-types

Types and utils for CloudFormation Service Specifications

import { emptyDatabase, SpecDatabase } from '@aws-cdk/service-spec-types';
import * as fs from 'node:fs';
import * as zlib from 'node:zlib';

export function loadAwsServiceSpec(): SpecDatabase {
 const specDatabase = fs.readFileSync('db.json.gz'));
 const db = emptyDatabase();
 db.load(JSON.parse(zlib.gunzipSync(specDatabase).toString('utf-8')));
 return db;
}

FAQs

Last updated on 10 May 2024

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc