Socket
Socket
Sign inDemoInstall

ember-auto-import

Package Overview
Dependencies
Maintainers
3
Versions
90
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-auto-import

Zero-config import from NPM packages


Version published
Weekly downloads
208K
increased by0.49%
Maintainers
3
Weekly downloads
 
Created

What is ember-auto-import?

ember-auto-import is an Ember CLI addon that allows you to import npm packages directly into your Ember.js application without needing to manually configure the build process. It simplifies the integration of third-party libraries and ensures that they are correctly bundled with your application.

What are ember-auto-import's main functionalities?

Automatic Import

This feature allows you to import npm packages directly into your Ember.js application without additional configuration. For example, you can import the 'moment' library and use it immediately.

import moment from 'moment';

Dynamic Import

This feature enables dynamic imports, allowing you to load modules on demand. This can be useful for code-splitting and optimizing the performance of your application.

import('lodash').then(_ => { console.log(_.random(0, 100)); });

Tree Shaking

Tree shaking is a feature that allows you to import only the parts of a library that you need, reducing the final bundle size. For example, you can import just the 'debounce' function from 'lodash' instead of the entire library.

import { debounce } from 'lodash';

Other packages similar to ember-auto-import

Keywords

FAQs

Package last updated on 21 May 2022

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