relative-cjs

1.0.3 • Public • Published

relative-cjs

Calculate relative path for ES Module import, commonJs require function

Install

Install with npm:

npm install relative-cjs

Install with yarn:

yarn add relative-cjs

Motivation

  • Very often we need to calculate relative path between two modules to generate CJS require function or ESM import statements.

  • This is obivious case when you are generating dynamic code or runtime for webpack plugins.
    Consider an example where you want to generate CSS stylesheet dynamically with url() function pointing to real files.

  • Path to require function or import statement must always start with '.' or '..'

  • This module is extends Jon Schlinkert's relative module and adds '.' or '..' appropriately

Usage

 
    var relativeCjs = require('relative-cjs');
 
    relativeCjs('a/b/', 'a');
    // ..
 
    relativeCjs('./app', './app');
    // ./.
 
    relativeCjs('./a/b.test/', 'a/c'); // b.test being treated as dir, read relative module doc for more info
    // ../c
 
    relativeCjs('./a/b.test', 'a/c'); // b.test being treated as file, read relative module doc for more info
    // ./c
 

Found an issue

Please go through relative documentation once. If issue still persists or feature requests, consider opening a new issue

Package Sidebar

Install

npm i relative-cjs

Weekly Downloads

2

Version

1.0.3

License

MIT

Unpacked Size

10.9 kB

Total Files

5

Last publish

Collaborators

  • ppiyush13