odin-js-fundamentals-part-4/node_modules/get-package-type
NetMan 65754e6d19 Ran npm install for whole directory 2024-01-05 20:30:21 +01:00
..
CHANGELOG.md Ran npm install for whole directory 2024-01-05 20:30:21 +01:00
LICENSE Ran npm install for whole directory 2024-01-05 20:30:21 +01:00
README.md Ran npm install for whole directory 2024-01-05 20:30:21 +01:00
async.cjs Ran npm install for whole directory 2024-01-05 20:30:21 +01:00
cache.cjs Ran npm install for whole directory 2024-01-05 20:30:21 +01:00
index.cjs Ran npm install for whole directory 2024-01-05 20:30:21 +01:00
is-node-modules.cjs Ran npm install for whole directory 2024-01-05 20:30:21 +01:00
package.json Ran npm install for whole directory 2024-01-05 20:30:21 +01:00
sync.cjs Ran npm install for whole directory 2024-01-05 20:30:21 +01:00

README.md

get-package-type NPM Version

Determine the package.json#type which applies to a location.

Usage

const getPackageType = require('get-package-type');

(async () => {
  console.log(await getPackageType('file.js'));
  console.log(getPackageType.sync('file.js'));
})();

This function does not validate the value found in package.json#type. Any truthy value found will be returned. Non-truthy values will be reported as commonjs.

The argument must be a filename.

// This never looks at `dir1/`, first attempts to load `./package.json`.
const type1 = await getPackageType('dir1/');

// This attempts to load `dir1/package.json`.
const type2 = await getPackageType('dir1/index.cjs');

The extension of the filename does not effect the result. The primary use case for this module is to determine if myapp.config.js should be loaded with require or import.