![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
babel-plugin-absolute-import
Advanced tools
Babel plugin to add the opportunity to use import
and require
with root based paths.
// Without this plugin...
import SomeExample from '../../../some/example.js';
const OtherExample = require('../../../other/example.js');
// With babel-plugin-root-import you can write...
import SomeExample from '~/some/example.js';
const OtherExample = require('~/other/example.js');
Install with your package manager of choice.
npm install babel-plugin-root-import --save-dev
# or
yarn add babel-plugin-root-import --dev
Add it to your plugins array in your babel config, e.g.
a .babelrc
file.
{
"plugins": [
["babel-plugin-root-import"]
]
}
Or for react-native:
{
"env": {
"production": {
"plugins": ["babel-plugin-root-import"]
}
}
}
For the rest of this readme, it's implied that you'll configure the plugin as above when using react-native.
You can configure this plugin by changing the string plugin name to a two-item array. Note that this array is nested inside the plugins array. Here's an example with the default config.
"plugins": [
[
"babel-plugin-root-import",
{
"rootPathSuffix": "./",
"rootPathPrefix": "~"
}
]
],
By default, the import will be relative to the working directory of
the process running babel. Typically this means you'll have import
paths like ~/src/foo.js
. You can change the prefix of "./"
to e.g.
"src"
or "src/js"
with this config option.
{
"plugins": [
["babel-plugin-root-import", {
"rootPathSuffix": "src/js"
}]
]
}
The paths "src/js"
and "./src/js"
behave the same.
If you don't like the ~
syntax you can use your own symbol (for example an #
symbol or \
). Using
@
is not recommended, as recent versions of NPM allow @
in package names. ~
is the default since
it's very unlikely to conflict with anything (and wouldn't be expanded to HOME anyway).
This must be 1 or 2 characters. Any additional characters are ignored.
//
// Waiting this change: https://github.com/entwicklerstube/babel-plugin-root-import/pull/97
{
"plugins": [
["babel-plugin-root-import", {
"rootPathPrefix": "#"
}]
]
}
// Now you can use the plugin like either of these
import foo from '#my-file';
import foo from '#/my-file';
If you set it to e.g. "#/"
then it'll require the slash in the import path.
You can supply an array of the above. The plugin will try each prefix/suffix pair in the order they are defined.
{
"plugins": [
["babel-plugin-root-import", {
"paths": [{
// `~` is the default so you can remove this if you want
"rootPathPrefix": "~",
"rootPathSuffix": "src/js"
}, {
"rootPathPrefix": "@",
"rootPathSuffix": "other-src/js"
}, {
// since we suport relative paths you can also go into a parent directory
"rootPathPrefix": "#",
"rootPathSuffix": "../../src/in/parent"
}]
}]
]
}
// Now you can use the plugin like:
import foo from '~/foo';
const bar = require('@/bar');
If you use eslint-plugin-import to validate imports it may be necessary to instruct ESLint to parse root imports. You can use eslint-import-resolver-babel-plugin-root-import
"import/resolver": {
"babel-plugin-root-import": {}
}
If you use Facebook's Flow for type-checking it is necessary to instruct it on how to map your chosen prefix to the root directory. Add the following to your .flowconfig
file, replacing {rootPathPrefix}
with your chosen prefix and {rootPathSuffix}
with your chosen suffix.
[options]
module.name_mapper='^{rootPathPrefix}/\(.*\)$' -> '<PROJECT_ROOT>/{rootPathSuffix}/\1'
For features like go-to-definition, VSCode needs to be able to resolve require
/import
paths to files on disk. This only works with one rootPathSuffix
, but you may define multiple rootPathPrefix
entries.
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"{rootPathPrefix}/*": ["src/*"]
}
}
}
For example, with ~/x/y.js
-> ./src/x/y.js
:
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"~/*": ["src/*"]
}
}
}
Webpack delivers a similar feature, if you just want to prevent end-less import strings you can also define aliases
in the resolve
module, at the moment it doesn't support custom/different symbols and multiple/custom suffixes.
READ MORE
Sometimes tooling might not be up to scratch, meaning you lose features such as navigation in your IDE. In such cases you might want to revert back to using relative paths again. If you have a significant amount of files, it might be worth looking into tooling to help you with the conversion.
/
in generated paths~
you can use whatever you like)Breaking Change to Babel 5
FAQs
Babel Plugin to enable relative absolute-import
We found that babel-plugin-absolute-import demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.