npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, πŸ‘‹, I’m Ryan HefnerΒ  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you πŸ™

Β© 2024 – Pkg Stats / Ryan Hefner

@overlayed-app/require-thunk

v1.0.1

Published

Thunk dependencies by modifying require πŸ§™β€β™‚οΈπŸ”

Downloads

4

Readme

require-thunk

Thunk dependencies by modifying require πŸ§™β€β™‚οΈπŸ”

A simple way to thunk dependencies (including local dependencies). Typescript is supported out of the box. We need this for better dry-run support in some Overlayed modules.

import thunker from './index'

// turn on thunking
thunker.enableThunking(['net', 'fs'], (target, original) => {
  if (target === 'net') {
    return { isFakeNet: true }
  } else {
    return { isFakeFs: true }
  }
})

// later on...
import('net').then(mongo => {
  // default: { isFakeNet: true, __thunked: true }
  console.log(mongo)
})

// finally, to turn it off
thunker.disableThunking()

API

Note: If you're using vanilla JS, the API methods exist off of default. For example:

const enableThunking = require('require-thunk').default.enableThunking

// use enableThunking(...)

Types

Thunk handler

(targets, exports) => { return {someKey: 'someValue' } }

The thunk handler callback signature.

  • target the target being thunked. String.
  • exports the value being provided for the thunk. Object.

enableThunking(targets, thunkHandler)

Enables dependency thunking via require.

  • targets target (or targets) to thunk. String or String[].
  • thunkHandler the thunk handler, called when a target requires thunking. See #thunk-handler for the function signature.

clearThunkCache(targets)

Clears a portion of (or all of) the thunk cache.

  • targets the target (or targets) to remove from the thunk cache. String or String[].

disableThunking()

Disables dependency thunking via require.

License

MIT