Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on Mar 13, 2024 via pnpm
Package summary
Share
1
issue
1
high severity
meta
1
4
licenses
32
MIT
2
Apache-2.0
2
ISC
1
BSD-3-Clause
Package created
5 Dec 2012
Version published
6 Feb 2024
Maintainers
5
Total deps
37
Direct deps
10
License
Apache-2.0

Issues

1

1 high severity issue

high
via: querystring@0.2.0 & others
Collapse
Expand

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
32 Packages, Including:
available-typed-arrays@1.0.7
base64-js@1.5.1
buffer@4.9.2
call-bind@1.0.7
define-data-property@1.1.4
es-define-property@1.0.0
es-errors@1.3.0
events@1.1.1
for-each@0.3.3
function-bind@1.1.2
get-intrinsic@1.2.4
gopd@1.0.1
has-property-descriptors@1.0.2
has-proto@1.0.3
has-symbols@1.0.3
has-tostringtag@1.0.2
hasown@2.0.2
is-arguments@1.1.1
is-callable@1.2.7
is-generator-function@1.0.10
is-typed-array@1.1.13
isarray@1.0.0
possible-typed-array-names@1.0.0
punycode@1.3.2
querystring@0.2.0
set-function-length@1.2.2
url@0.10.3
util@0.12.5
uuid@8.0.0
which-typed-array@1.1.15
xml2js@0.6.2
xmlbuilder@11.0.1

Apache License 2.0

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
use-patent-claims
place-warranty
Cannot
hold-liable
use-trademark
Must
include-copyright
include-license
state-changes
include-notice
2 Packages, Including:
aws-sdk@2.1552.0
jmespath@0.16.0

ISC License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
Cannot
hold-liable
Must
include-copyright
include-license
2 Packages, Including:
inherits@2.0.4
sax@1.2.1

BSD 3-Clause "New" or "Revised" License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
place-warranty
Cannot
use-trademark
hold-liable
Must
include-copyright
include-license
1 Packages, Including:
ieee754@1.1.13
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

10
All Dependencies CSV
β“˜ This is a list of aws-sdk 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
buffer4.9.257.39 kBMIT
prod
events1.1.17.77 kBMIT
prod
ieee7541.1.132.66 kBBSD-3-Clause
prod
jmespath0.16.017.69 kBApache-2.0
prod
querystring0.2.06.51 kBMIT
prod
1
sax1.2.118.46 kBISC
prod
url0.10.316.81 kBMIT
prod
1
util0.12.59.75 kBMIT
prod
uuid8.0.022.29 kBMIT
prod
xml2js0.6.2838.3 kBMIT
prod

Visualizations

Frequently Asked Questions

What does aws-sdk do?

The AWS SDK (Software Development Kit) for JavaScript enables developers to build libraries or applications that use AWS services. These services include Amazon S3, Amazon EC2, DynamoDB, and more. The SDK provides an object-oriented API, as well as low-level direct service access.

How do you use aws-sdk?

To integrate AWS SDK into your Node.js or JavaScript-enabled web project, first, you need to install it. For Node.js, use the npm package manager to install the SDK by running npm install aws-sdk on your terminal.

You can then require the SDK in your application as follows:

var AWS = require('aws-sdk');

You can similarly install and use the SDK for a React Native project. For a browser-based application, you simply add the following script tag to your HTML pages:

<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1467.0.min.js"></script>

For TypeScript projects, you should import the AWS object:

// import entire SDK
import AWS from 'aws-sdk';
// import AWS object without services
import AWS from 'aws-sdk/global';
// import individual service
import S3 from 'aws-sdk/clients/s3';

Remember, the SDK enables you to use various AWS services, so you should configure it appropriately to specify which services to interact with.

Where are the aws-sdk docs?

To better understand how to use the AWS SDK for JavaScript, the official documentation is your most crucial resource. Here, you'll get comprehensive explanations, guidance, and API references for using the SDK.

For detailed information on version 3.x of AWS SDK for JS, the Developer Guide and API Reference can be found here: Developer Guide and API Reference.

For version 2.x of the SDK, the Developer Guide and API reference could be found respectively at Developer Guide and API reference.

The repository's GitHub page is also a valuable resource with useful links including the changelog and code examples.