Socket
Socket
Sign inDemoInstall

@file-services/commonjs

Package Overview
Dependencies
Maintainers
0
Versions
68
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@file-services/commonjs

Isomorphic, fs-agnostic implementation of the Node commonjs module system.


Version published
Weekly downloads
573
decreased by-52.8%
Maintainers
0
Weekly downloads
 
Created
Source

@file-services/commonjs

npm version package size

Isomorphic, fs-agnostic implementation of Node's CommonJS module system.

Getting started

Install library in project:

npm i @file-services/commonjs

Then, use the programmatic API:

import { createCjsModuleSystem } from "@file-services/commonjs";
import { createMemoryFs } from "@file-services/memory";

const fs = createMemoryFs({
  "some-folder": {
    "index.js": `module.exports = 'exported value'`,
  },
});

const moduleSystem = createCjsModuleSystem({ fs });

const evaluated = moduleSystem.requireModule("/some-folder/index.js");
// evaluated === 'exported value'

License

MIT

FAQs

Package last updated on 04 Aug 2024

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