Node.js loader for import specifiers as file paths without extensions or as directory paths
Install:
npm i extensionless
Start node
with the following flag added:
--experimental-loader=extensionless
You can now use import specifiers as file paths without extensions or as directory paths:
import mod from './mod'
import mod from '../mod' assert {type: 'json'}
import api from '/apps/api'
import web from 'file:///apps/web'
If it can be deduced from the specifier that its target is a directory, the resolver looks for only the index files:
import cur from '.'
import up from '..'
import mod from './mod/'
import mod from '../mod/' assert {type: 'json'}
import api from '/apps/api/'
import web from 'file:///apps/web/'
To configure this package, you can add the field extensionless
to package.json
:
"extensionless": {
"lookFor": ["js", "mjs", "cjs"]
}
Field | Default Value |
---|
lookFor | ["js"] |