Simple and lightweight UUID generator with parser in JavaScript
Lipku
by Akhilesh Shukla
2y ago
About: A simple and lightweight UUID (Universally Unique Identifiers) generator with parser in JavaScript, which is also compatible with node.js. Which means, same library can be used for browser and node.js too. Basic features: Can generate up to 262143 different ids in one second; Can keep sequence Generated id‘s length is 15. less than others. Can be de-serialized With zero dependencies Size less than 1kb You may also like: Simple and fast unique GUID generator in JavaScript How to install and use it? 1. Install the UUID generator with NPM. npm install lsp-uuid -save 2. Then, import t ..read more
Visit website
Simple and fast unique GUID generator in JavaScript
Lipku
by Akhilesh Shukla
2y ago
About: A simple and fast unique GUID generator in JavaScript, which is simple to integrate in your pure JavaScript project and also compatible with Node.js. Features: It works based on milliseconds therefore, duplication is not possible It usually takes to execute between 0.1ms and 0.5ms It does supports node.js and client side How to install and use it? 1. Download the code by clicking the ‘Download’ button above and import the GUID generator. #For client JavaScript import { Guid } from "../src/guid"; #For node.js let { Guid } = require("../src/guid"); 2. To generate the unique GUID ..read more
Visit website
A minimal Vanilla JavaScript emoji picker – Emoji Popover
Lipku
by Akhilesh Shukla
2y ago
About: Its a highly customizable emoji picker which is developed using Vanilla JavaScript. This component enables your users to select emojis from the emoji picker popover by clicking on input field/button attached. This component gives you the flexibility to define your own list of emojis while you are configuring it. How to configure and use it? 1. You can install it via NPM. npm i emoji-popover 2. Or, if you are not using any package manager in your project then, you can download it from Download button above and include it to your document. <link href="styles.css" /> <script s ..read more
Visit website
Searchable country selector for React – react-country-selector
Lipku
by Akhilesh Shukla
2y ago
Description: If, you are looking for country selector for React with search feature then, you are at the right place. This component is built using Tailwind CSS. How to install and use it? 1. Download and import the country selector component. import { COUNTRIES } from './countries'; import { CountrySelector } from './selector'; 2. Now, add the country selector component to your application. Like following: const myPage = () => { const myRef = React.createRef<HTMLDivElement>(); const [isOpen, setIsOpen] = useState(false); // Default this to a country's code to preselect it ..read more
Visit website
A vanilla JavaScript emoji picker with auto-complete
Lipku
by Akhilesh Shukla
2y ago
About: This is a simple vanilla JavaScript emoji picker that allows, your users to choose emojis from auto-complete dropdown while typing emoji keywords. Auto-complete dropdown suggests result based on entered keyword. How to use emoji picker? 1. Download using Download button above and import the required modules. <script type='module'> import picker from './src/index.js' import fetchJSON from './src/fetchJSON.js' </script> 2. Create a <INPUT> tag in your document. <input type='text' /> 3. Bind the emoji picker with input field. fetchJSON('./src/emoji.json ..read more
Visit website
800+ emojis library for CSS – emoji-awesome
Lipku
by Akhilesh Shukla
2y ago
About: emoji-awesome library contains 800+ emojis with various sets such as Facebook, twitter etc. This is cross platform and easy to use which requires not JavaScript code at all. Emoji sets supported: Apple emoji support Twitter emoji support Messenger emoji support Google emoji support Facebook emoji support Emoji-one emoji support Emoji types: People Nature Objects Foods Activity Places Symbols How to use it? 1. Download and install emoji-awesome with NPM. npm install emoji-awesome 2. After installation, you can use it like following: <i ></i> <i ></i> <i ..read more
Visit website
Emoji switcher in JavaScript same as Discord
Lipku
by Akhilesh Shukla
2y ago
About: This is Vanilla JavaScript emoji switcher that will enable your users to switch emoji icon hovering mouse on the item or on clicking/tapping the item. How to use emoji switcher? 1. Include the CSS and JavaScript file under the <HEAD>section of your web page. Like this: <link href="css/style.css" /> <script src="js/main.js"></script> 2. Add the emoji switcher where you want it to display. <div > <button id="emoji-btn">?</button> </div> 3. Now, add some CSS styles to the emoji switcher. * { padding: 0; margin: 0; box-sizing ..read more
Visit website
Insert emojis using CSS in your web page – emoji.css
Lipku
by Akhilesh Shukla
2y ago
About: emoji.css is a CSS library that contains 1000+ emojis to insert in your web page that is very handy. You just need to use a single element and add CSS class based on which emoji you want to show. This works just like font awesome. How to use emoji.css? Step1: Download the emoji.css library using download button above and link it under the <HEAD> section on your web page. <link href='PATH_TO_CSS/emoji.min.css'> Step2: Add the <span> element and add the emoji classes of which emoji you want to show. <span ></span> <span ></span> <span > ..read more
Visit website
Client side emoji captcha verification in JavaScript – eCaptcha
Lipku
by Akhilesh Shukla
2y ago
Description: If you are creating a web form, where you want your visitor to verify if he/she is human to prevent spamming. In such case, you can use emoji captcha verification in JavaScript, which is client side validation. The visitor need to click on emoji in order to verify if, he is human. How to use it? Step1: Include JS and CSS files under the <HEAD> section. You can also put the eCaptchav2.js file in footer. <link href="PATHTOCSS/eCaptcha.css"> <script src="PATHTOJS/eCaptchav2.js"></script> Step2: Now place the below code in your <Body> section where you ..read more
Visit website
Implement spotlight effect in JavaScript with Dark Light Mode
Lipku
by Akhilesh Shukla
2y ago
Description: You can implement Dark Mode in your webpage easily with this plugin. Your users can enable/disable the Dark Mode by switching, and then entire page will be dark and when the user will move the mouse then contents of the page will shown with the spotlight effect. How to use it? 1. You can install the Dark Light Mode plugin with NPM or Yarn package manager. #NPM npm install --save dark-light-mode or #YARN yarn add dark-light-mode 2. Or, you can also use CDN version as following. <script type="module" src="https://unpkg.com/dark-light-mode"></script> 3. Then, add th ..read more
Visit website

Follow Lipku on FeedSpot

Continue with Google
Continue with Apple
OR