atom-autocomplete-module-import

授权协议 View license
开发语言 JavaScript
所属分类 Web应用开发、 常用JavaScript包
软件类型 开源软件
地区 不详
投 递 者 伍胡媚
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

⚛️ Atom Autocomplete Module Import

Search & install NPM packages from import/require statements powered by Algolia.

demo

Changelog

Features

This Atom Plugin allows you to quickly find and install any npm module as you are writing your require() / import statements:

  • Fast & Relevant autocomplete search powered by Algolia.
  • Install modules without having to leave Atom.
  • Yarn and NPM support.
  • Save package as dependencies, devDependencies, peerDependencies or optionalDependencies.
  • Support for require() and ES2015 import module syntax.

You can read more about the story behind in this blog post.

Installation

apm install autocomplete-module-import

Usage

In a JavaScript file type require(' (or from ') and the plugin will automatically suggest relevant packages from the NPM registry.

Once you confirm your selection, the plugin will ask if you want to install the dependency if it's not already installed.

Copyright and license

Copyright (c) 2017 Algolia. Code released under the MIT license.

 相关资料
  • function getCarData() { return [ ["BMW", 2017, "black", "black"], ["Nissan", 2018, "blue", "blue"], ["Chrysler", 2019, "yellow", "black"], ["Volvo", 2020, "white", "gray"] ];

  • 描述 (Description) Widget AutoComplete函数可以与JqueryUI中的小部件一起使用。自动完成小部件在您输入字段时提供建议。假设将Ja作为输入,它将提供输出为Java或JavaScript。 语法 (Syntax) 以下是使用自动完成的简单语法 - $( "#tags" ).autocomplete({ source: availableTags }); 例

  • 这是一个在文本输入框中实现自动完成的jQuery插件。本站采用了该插件。 使用代码示例: $("#f_prj_name").autocomplete("/list_projects_of_prefix", {    minChars: 1,    width: 310,    matchContains: true,    autoFill: false,    formatItem: funct

  • AutoComplete 是一个 jQuery Mobile 的插件,用于实现在 jQuery Mobile 中的搜索框中提供自动完成的功能。

  • 主要内容:实例演示jQuery Autocomplete 插件根据用户输入值进行搜索和过滤,让用户快速找到并从预设值列表中选择。通过给 Autocomplete 字段焦点或者在其中输入字符,插件开始搜索匹配的条目并显示供选择的值的列表。通过输入更多的字符,用户可以过滤列表以获得更好的匹配。 该插件现在是 jQuery UI 的一部分,独立的版本不会再更新了。目前版本是 1.6。 访问 jQuery Autocomp

  • autocomplete属性规定自动完成功能,以帮助用户输入。该特性规定浏览器是否保存用户的输入值,以备将来使用。 如果开启该特性,则允许浏览器保存用户的输入,在用户开始输入时,浏览器会根据之前输入过的值来预测用户本次的输入。默认情形下,该属性处于打开状态。 为了保护敏感数据(如用户账户信息),避免本地浏览器对它们进行不安全存储,需要设置 autocomplete=off,来显式的关闭 autoc