Socket
Socket
Sign inDemoInstall

im-cli

Package Overview
Dependencies
35
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    im-cli

A command line tool to manage Import Maps


Version published
Weekly downloads
3
Maintainers
1
Install size
2.66 MB
Created
Weekly downloads
 

Readme

Source

Import Maps Command Line Interface

A command-line utility for managing JavaScript import maps dependencies.

Screenshot 2023-04-01 at 00 54 27

This utility uses the esm.sh CDN to fetch package information and versions.

Installation

To install im-cli globally, run the following command:

npm install -g im-cli

Usage

im <command> [package-name] [@version]

Commands

Adding a package

To add a package called lodash to your import map JSON file, run:

im add lodash

To add a specific version of the lodash package, include the version with the package name:

im add lodash@4.17.21

Updating a package

To update the lodash package to the latest version, run:

im update lodash

Removing a package

To remove the lodash package from your import map JSON file, run:

im remove lodash

Displaying help

To display a help message with command usage, run:

im help

Import map usage in HTML

To use the generated import map in your HTML file, include the following script tag:

<script type="importmap" src="path/to/your/im.json"></script>

Now you can use the ES module imports in your JavaScript files:

import _ from "lodash"

FAQs

Last updated on 01 Apr 2023

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc