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 Sep 30, 2023 via pnpm
Package summary
Share
1
issue
1
high severity
meta
1
4
licenses
26
MIT
2
Apache-2.0
2
ISC
1
BSD-3-Clause
Package created
5 Dec 2012
Version published
28 Sep 2023
Maintainers
5
Total versions
1740
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
Packages
available-typed-arrays@1.0.5
base64-js@1.5.1
buffer@4.9.2
call-bind@1.0.2
events@1.1.1
for-each@0.3.3
function-bind@1.1.1
get-intrinsic@1.2.1
gopd@1.0.1
has-proto@1.0.1
has-symbols@1.0.3
has-tostringtag@1.0.0
has@1.0.3
is-arguments@1.1.1
is-callable@1.2.7
is-generator-function@1.0.10
is-typed-array@1.1.12
isarray@1.0.0
punycode@1.3.2
querystring@0.2.0
url@0.10.3
util@0.12.5
uuid@8.0.0
which-typed-array@1.1.11
xml2js@0.5.0
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
Packages
aws-sdk@2.1467.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
Packages
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
Packages
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.

Dependencies

31
Get CSV
Name Version Size License Type Vulnerabilities
available-typed-arrays 1.0.5 5.26 kB MIT prod
aws-sdk 2.1467.0 10.48 MB Apache-2.0 prod
base64-js 1.5.1 4.01 kB MIT prod
buffer 4.9.2 57.39 kB MIT prod
call-bind 1.0.2 5.24 kB MIT prod
events 1.1.1 7.77 kB MIT prod
for-each 0.3.3 4.05 kB MIT prod
function-bind 1.1.1 6.15 kB MIT prod
get-intrinsic 1.2.1 11.49 kB MIT prod
gopd 1.0.1 3.55 kB MIT prod
has-proto 1.0.1 3.3 kB MIT prod
has-symbols 1.0.3 6.9 kB MIT prod
has-tostringtag 1.0.0 4.05 kB MIT prod
has 1.0.3 1.52 kB MIT prod
ieee754 1.1.13 2.66 kB BSD-3-Clause prod
inherits 2.0.4 1.98 kB ISC prod
is-arguments 1.1.1 9.64 kB MIT prod
is-callable 1.2.7 9.66 kB MIT prod
is-generator-function 1.0.10 10.21 kB MIT prod
is-typed-array 1.1.12 5.96 kB MIT prod
isarray 1.0.0 1.97 kB MIT prod
jmespath 0.16.0 17.69 kB Apache-2.0 prod
punycode 1.3.2 7.79 kB MIT prod
querystring 0.2.0 6.51 kB MIT prod 1
sax 1.2.1 18.46 kB ISC prod
url 0.10.3 16.81 kB MIT prod 1
util 0.12.5 9.75 kB MIT prod
uuid 8.0.0 22.29 kB MIT prod
which-typed-array 1.1.11 10.14 kB MIT prod
xml2js 0.5.0 12.83 kB MIT prod
xmlbuilder 11.0.1 28.11 kB MIT 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.