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 Apr 10, 2024 via pnpm

tedious 16.4.0

A TDS driver, for connecting to MS SQLServer databases.
Package summary
Share
0
issues
5
licenses
128
MIT
4
BSD-3-Clause
4
ISC
3
other licenses
Apache-2.0
2
0BSD
1
Package created
4 Dec 2011
Version published
20 Jul 2023
Maintainers
8
Total deps
139
Direct deps
12
License
MIT

Issues

0
This package has no issues

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
128 Packages, Including:
@azure/abort-controller@1.1.0
@azure/abort-controller@2.1.1
@azure/core-auth@1.7.1
@azure/core-client@1.9.1
@azure/core-http-compat@2.1.1
@azure/core-lro@2.7.1
@azure/core-paging@1.6.1
@azure/core-rest-pipeline@1.15.1
@azure/core-tracing@1.1.1
@azure/core-util@1.8.1
@azure/identity@2.1.0
@azure/keyvault-keys@4.8.0
@azure/logger@1.1.1
@azure/msal-browser@2.38.4
@azure/msal-common@13.3.1
@azure/msal-common@7.6.0
@azure/msal-node@1.18.4
@types/node@20.12.7
@types/readable-stream@4.0.11
abort-controller@3.0.0
agent-base@7.1.1
array-buffer-byte-length@1.0.1
arraybuffer.prototype.slice@1.0.3
available-typed-arrays@1.0.7
base64-js@1.5.1
bl@6.0.12
buffer@6.0.3
call-bind@1.0.7
data-view-buffer@1.0.1
data-view-byte-length@1.0.1
data-view-byte-offset@1.0.0
debug@4.3.4
define-data-property@1.1.4
define-lazy-prop@2.0.0
define-properties@1.2.1
es-abstract@1.23.3
es-aggregate-error@1.0.13
es-define-property@1.0.0
es-errors@1.3.0
es-object-atoms@1.0.0
es-set-tostringtag@2.0.3
es-to-primitive@1.2.1
event-target-shim@5.0.1
events@3.3.0
for-each@0.3.3
function-bind@1.1.2
function.prototype.name@1.1.6
functions-have-names@1.2.3
get-intrinsic@1.2.4
get-symbol-description@1.0.2

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
4 Packages, Including:
@js-joda/core@5.6.2
buffer-equal-constant-time@1.0.1
ieee754@1.2.1
sprintf-js@1.1.3

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
4 Packages, Including:
inherits@2.0.4
lru-cache@6.0.0
semver@7.6.0
yallist@4.0.0

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:
ecdsa-sig-formatter@1.0.11
jsbi@4.3.0

BSD Zero Clause 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
include-copyright
include-license
include-original
Cannot
hold-liable
Must
1 Packages, Including:
tslib@2.6.2
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

12
All Dependencies CSV
β“˜ This is a list of tedious 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
@azure/identity2.1.0235.93 kBMIT
prod
@azure/keyvault-keys4.8.01.21 MBMIT
prod
@js-joda/core5.6.27.36 MBBSD-3-Clause
prod
bl6.0.1289.65 kBMIT
prod
es-aggregate-error1.0.1327.73 kBMIT
prod
iconv-lite0.6.3186.2 kBMIT
prod
js-md40.3.2421.36 kBMIT
prod
jsbi4.3.0131.17 kBApache-2.0
prod
native-duplexpair1.0.03.71 kBMIT
prod
node-abort-controller3.1.15.28 kBMIT
prod
punycode2.3.17.42 kBMIT
prod
sprintf-js1.1.310.71 kBBSD-3-Clause
prod

Visualizations

Frequently Asked Questions

What does tedious do?

Tedious is a pure JavaScript implementation of the Tabular Data Stream (TDS) protocol, used for interacting with instances of Microsoft's SQL Server databases. It aims to remain a fairly lean implementation of the TDS protocol and does not present extensive surplus functionality. Tedious supports various TDS versions, including TDS 7.4, TDS 7.3.B, TDS 7.3.A, TDS 7.2 and TDS 7.1, encompassing compatibility with SQL Server 2000 all the way through to SQL Server 2022.

How do you use tedious?

Before you can use Tedious, make sure that Node.js is installed on your system. Once you have Node.js, you can easily install Tedious by utilizing NPM (Node Package Manager) with the following command: npm install tedious. After successful installation, you can start using it for connecting to your SQL Server databases. The script will find its setup in a context similar to the following JavaScript code

const Connection = require('tedious').Connection;
const config = {
  userName: 'your-username',
  password: 'your-password',
  server: 'localhost',
  options: {
    database: 'your-database'
  }
};
const connection = new Connection(config);
connection.on('connect', function(err) {
   // If no error, then good to go...
     executeStatement();
   }
);

Do remember to replace 'your-username', 'your-password', 'localhost', and 'your-database' with your database's specific details.

Where are the tedious docs?

For a deeper exploration of Tedious and how it can be used for interacting with SQL Server instances, you can visit the documentation and code samples provided at tediousjs.github.io/tedious. This comprehensive guide can assist developers in understanding the functionality and effective use of Tedious.