recma-export-filepath
March 23, 2025 ยท View on GitHub
A recma plugin to expose the filepath as a named export.
Table of Contents
Installation
npm install recma-export-filepath
Usage
This recma plugin exposes the filepath of the current file as a named export.
For example, given a file named example.mdx with the following contents:
Hello ๐
The following script:
import { compile } from '@mdx-js/mdx'
import recmaExportFilepath from 'recma-export-filepath'
import { read } from 'to-vfile'
const { contents } = await compile(await read('example.mdx'), {
jsx: true,
recmaPlugins: [recmaExportFilepath]
})
console.log(contents)
Roughly yields:
export const filepath = 'example.mdx'
export default function MDXContent() {
return <p>Hello ๐</p>
}
API
The default export is a recma plugin.
Options
absolute(boolean, default:false) โ If true, use an absolute path. By default a relative path is used.cwd(string) The current working directory to use when generating a relative file path.name(string, default:'filepath') โ The name to export the file path as.
In addition it supports unist-util-mdx-define
options.
Compatibility
This project is compatible with Node.js 16 or greater.
License
MIT ยฉ Remco Haszing