libraries-manager
v1.0.2
Published
A tool for managing node_modules libraries.
Readme
Libraries Manager
Overview
Libraries Manager is a versatile tool designed for managing node_modules libraries in your projects. It allows you to easily install, update, remove, and list your project's dependencies, simplifying the process of managing Node.js libraries.
Features
- Install Libraries:
- Install new libraries into your project.
- Update Libraries:
- Update existing libraries to their latest versions.
- Remove Libraries:
- Uninstall libraries that are no longer needed.
- List Libraries:
- Display all installed libraries and their versions.
- Configuration Management:
- Manage configuration settings for Libraries Manager.
Installation
You can install Libraries Manager using npm:
npm install libraries-managerHow to use
You might use like this instead the one shown in index.js:
const install = require('./src/installer');
const update = require('./src/updater');
const remove = require('./src/remover');
const list = require('./src/lister');
// Example usage
{ install }('express'); // Install a package
{ update }('express'); // Update a package
{ remove }('express'); // Remove a package
{ list }(); // List all packages