Launch Week Day 2: Introducing Reports: An Extensible Reporting Framework for Socket Data.Learn More
Socket
Book a DemoSign in
Socket

eb-mock

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

eb-mock

Mock API for AWS ElasticBeanstalk

latest
Source
npmnpm
Version
0.0.5
Version published
Maintainers
1
Created
Source

eb-mock Build Status

Mock API for AWS ElasticBeanstalk.

An API mimicking aws-sdk's ElasticBeanstalk wrapper.

Implements all ElasticBeanstalk operations, except the following methods, which are noops of consistent param, callback signatures:

  • CheckDNSAvailability
  • CreateConfigurationTemplate
  • CreateStorageLocation
  • DeleteApplicationVersion
  • DeleteConfigurationTemplate
  • DeleteEnvironmentConfiguration
  • DescribeEvents
  • DescribeConfigurationOptions
  • DescribeConfigurationSettings
  • DescribeEnvironmentResource
  • RebuildEnvironment
  • RetrieveEnvironmentInfo
  • RequestEnvironmentInfo
  • RestartAppServer
  • UpdateConfigurationTemplate
  • UpdateApplicationVersion
  • ValidateConfigurationSettings

Examples

var EB = require("eb-mock");
var fakeCreds = {};
var eb = new EB(fakeCreds);

eb.createApplication({
  ApplicationName: "my app"
}, function (err, data) {
  console.log(data);
});

Testing

npm test

TODO

  • Add other methods as needed
  • Perfect parity with AWS errors

License

Copyright (c) 2014 Jordan Santell

Keywords

aws

FAQs

Package last updated on 13 Oct 2014

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