Socket
Socket
Sign inDemoInstall

find-babel-config

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

find-babel-config

Find the closest babel config based on a directory


Version published
Weekly downloads
2.6M
increased by1.32%
Maintainers
1
Weekly downloads
 
Created

What is find-babel-config?

The find-babel-config npm package is a utility that helps in finding Babel configuration files in a project. It searches for Babel configuration files (.babelrc, .babelrc.js, babel.config.js) in the directory you specify and upwards through the directory tree until it finds a configuration file.

What are find-babel-config's main functionalities?

find Babel configuration

This feature allows you to find the Babel configuration file and its contents. The function returns a promise that resolves with an object containing the path to the configuration file and its contents if found.

const findBabelConfig = require('find-babel-config');

(async () => {
  const { file, config } = await findBabelConfig('./path/to/project');
  if (file) {
    console.log(`Found Babel config at: ${file}`);
    console.log('Config contents:', config);
  } else {
    console.log('No Babel config found.');
  }
})();

synchronous find

This feature provides a synchronous method to find the Babel configuration file. It returns an object with the path to the configuration file and its contents if found.

const findBabelConfig = require('find-babel-config');

const { file, config } = findBabelConfig.sync('./path/to/project');
if (file) {
  console.log(`Found Babel config at: ${file}`);
  console.log('Config contents:', config);
} else {
  console.log('No Babel config found.');
}

Other packages similar to find-babel-config

Keywords

FAQs

Package last updated on 25 Apr 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc