Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bower-config

Package Overview
Dependencies
Maintainers
6
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bower-config

The Bower config reader and writer.

  • 0.5.3
  • Source
  • npm
  • Socket score

Version published
Maintainers
6
Created

What is bower-config?

The bower-config npm package is used to manage Bower configuration files. It allows you to read, modify, and write Bower configuration settings programmatically.

What are bower-config's main functionalities?

Reading Configuration

This feature allows you to read the Bower configuration settings from the .bowerrc file or other configuration sources.

const Config = require('bower-config');
const config = Config.read();
console.log(config);

Modifying Configuration

This feature allows you to modify the Bower configuration settings and write them back to the configuration file.

const Config = require('bower-config');
const config = Config.read();
config.directory = 'new_components';
Config.write(config);

Setting Defaults

This feature allows you to set default values for Bower configuration settings.

const Config = require('bower-config');
const config = Config.read();
config.defaults = { directory: 'default_components' };
Config.write(config);

Other packages similar to bower-config

FAQs

Package last updated on 14 Sep 2017

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