Socket
Socket
Sign inDemoInstall

nuxt-lucide-icons

Package Overview
Dependencies
181
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    nuxt-lucide-icons

This Nuxt module makes working with Lucide icons a breeze!


Version published
Weekly downloads
315
decreased by-69.57%
Maintainers
1
Created
Weekly downloads
 

Changelog

Source

v1.0.4

compare changes

📖 Documentation

  • readme: Add a note to prevent issues with ad-blockers and this package (6fc0530)

🏡 Chore

  • Test bundler module resolution (10acbe3)
  • Update skeleton files (cf6ae70)

🤖 CI

  • Add GitHub workflows

❤️ Contributors

Readme

Source

Nuxt Lucide Icons

npm version License Buy us a tree Code style Tests npm downloads Made by SWIS Nuxt

This Nuxt module makes working with Lucide icons a breeze!

Features

  • 🚠  Auto imports Lucide icons
  • 🎛️  Configurable name prefix
  • 🌲  Supports tree-shaking

Quick Setup

  1. Add nuxt-lucide-icons dependency to your project
# Using pnpm
pnpm add -D nuxt-lucide-icons

# Using yarn
yarn add --dev nuxt-lucide-icons

# Using npm
npm install --save-dev nuxt-lucide-icons
  1. Add nuxt-lucide-icons to the modules section of nuxt.config.ts
export default defineNuxtConfig({
  modules: [
    'nuxt-lucide-icons'
  ]
})
  1. That's it! You can now use all Lucide icons in your Nuxt app ✨
<template>
  <div>
    <h1>Nuxt Lucide Icons</h1>
    <LucideRocket />
    <LucideFolderGit2 color="red" />
    <LucideGithub :size="32" />
  </div>
</template>

Note: Make sure to disable your ad-blocker for local development. Some ad-blockers, such as uBlock Origin, block all subsequent requests when they detect the fingerprint icon. For more information, refer to the following issue.

Configuration

Don't like the default component name prefix? You can change it in nuxt.config.ts:

export default defineNuxtConfig({
  modules: [
    'nuxt-lucide-icons'
  ],

  lucide: {
    namePrefix: 'Icon'
  }
})

Development

# Install dependencies
npm install

# Generate type stubs
npm run dev:prepare

# Develop with the playground
npm run dev

# Build the playground
npm run dev:build

# Run ESLint
npm run lint

# Run Vitest
npm run test
npm run test:watch

# Release new version
npm run release

Contributing

Please see CONTRIBUTING and CODE_OF_CONDUCT for details.

Security

If you discover any security related issues, please email security@swis.nl instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

This package is Treeware. If you use it in production, then we ask that you buy the world a tree to thank us for our work. By contributing to the Treeware forest you’ll be creating employment for local families and restoring wildlife habitats.

SWIS :heart: Open Source

SWIS is a web agency from Leiden, the Netherlands. We love working with open source software.

FAQs

Last updated on 19 Feb 2024

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