New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@theintern/common

Package Overview
Dependencies
Maintainers
4
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@theintern/common

Common modules used by @theintern projects

  • 0.2.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2.5K
decreased by-58.81%
Maintainers
4
Weekly downloads
 
Created
Source

intern-common

This repository contains common library code used by Intern projects. It's essentially a subset of @dojo/core and @dojo/shim, extracted to prevent circular dependencies between Dojo and Intern.

While the implementations of Task, Evented, and the various utility functions are very similar (and in some cases the same as) their @dojo counterparts, there are a few differences. Probably the most significant is with the request module, which uses a simpler API that Dojo's request and is backed by axios.

Usage

This package exports its public interface through its base import:

import { Task, Evented, request } from '@theintern/common';

Features

The following concrete exports are provided:

  • Evented: Base class for event emitters
  • Task: Cancellable promise
  • global: Pointer to the global object (e.g., window)
  • request: Simple network request module
  • createHandle: Create a handle that can be used to cleanup resources
  • createCompositeHandle: Create an aggregate Handle
  • deepMixin: Deeply one or more objects into a target object
  • duplicate: Deep copy an object
  • partial: Create a function from a base function by binding one or more arguments of the base function to given values

Development

The development flow is standard:

  1. npm install
  2. npm run build (or npm run watch)
  3. npm test to run tests

The build process creates four webpack bundles in _build/: one is the distributable index.js, two are for unit tests (browser and Node), and one is for integration tests.

Keywords

FAQs

Package last updated on 20 Jun 2019

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