Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

sinon-dist

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sinon-dist

Standalone builds of Sinon.js

  • 1.15.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

Sinon.JS standalone

This repository contains standalone builds of Sinon.js, ready to be used. All builds are directly fetched from sinonjs.org and tagged.

Installation

Via npm:

npm install sinon-dist

Install a specific version:

npm install sinon-dist@1.15.1

Install the latest version and save the version in package.json:

npm install sinon-dist --save-dev

Usage

Web page

<script src="node_modules/sinon.js"></script>
<!-- TODO: Use sinon API! -->

AMD

require.config({
    sinon: 'node_modules/sinon'
});
require(['sinon'], function(sinon) {
    // TODO: use sinon API!
});

Node.js (CommonJS)

var sinon = require('sinon');
// TODO: Use sinon API!

References

This repository is not affiliated in any way with the original authors of Sinon.js.

Keywords

FAQs

Package last updated on 11 Aug 2015

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc