Getting started
Install via npm
If you use npm or yarn, you can install the library with the following command:
npm install @tomickigrzegorz/autocomplete
Or using Yarn:
yarn add @tomickigrzegorz/autocomplete
Include JS and CSS files
The first thing you should do is download the
autocomplete
library files. All the necessary files are located in the
"dist/js" and "dist/css" folders. If you want to make changes, the
uncompiled javascript and sass files are in the sources folder.
<!-- css -->
<link rel="stylesheet" href="path/to/autocomplete.min.css">
<!-- js -->
<script src="path/to/autocomplete.min.js"></script>
Or CDN
<!-- css -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/tomickigrzegorz/autocomplete@3.0.0/dist/css/autocomplete.min.css"/>
<!-- js -->
<script src="https://cdn.jsdelivr.net/gh/tomickigrzegorz/autocomplete@3.0.0/dist/js/autocomplete.min.js"></script>