npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@nuxt-awesome/theme

v2.0.12

Published

a Nuxt 3 template and boilerplate with a lot of useful features. Nuxt 3 + Tailwindcss + Nuxt Layer

Downloads

111

Readme

Alpine

Nuxt 3 Awesome Starter

npm NPM npm

a Nuxt 3 starter template with a lot of useful features, integrated with TailwindCSS 3. Easy use and implemented in Nuxt Layer, you can extend this template with zero config.
Nuxt Awesome Starter v2 brings many changes, separating core component apps and main business logic into the /app folder. and also provides the option to also be integrated with the nuxt layer to make it easier to bring all of our Awesome features and components to your project.

NOTES

  • This Project using "pnpm" or "bun" as package manager
  • this is Nuxt 3 Awesome Starter V2, you can check V1 in this link

Preview

Features

To Dos

  • [X] Nuxt Layer Support
  • [X] Nuxt Awesome Modules Core
    • [X] create modules ~/modules/awesome.ts
  • [X] Adding Pinia
    • [X] auto import "defineStore" as "definePiniaStore"
    • [X] auto import folder "stores"
  • [X] Eslint & Prettier
  • [X] 🌙 Theme Switcher (light, dark, system)
  • [ ] 🇮🇩 Language Switcher
  • [ ] Awesome Components
    • [X] Card
    • [X] Content (@nuxt/content bridge)
    • [X] Form
      • [X] Text Input
      • [X] Switch
    • [X] Action
      • [X] Button
      • [X] Link
    • [X] Tabs
    • [X] Pages
      • [X] Welcome
      • [X] Error
    • [X] Action Sheet
    • [X] Alert Banner
    • [ ] Modal
    • [ ] Toast

Getting Started

Installation

to use Nuxt Awesome Starter you can choose one of the following options:

  • using nuxt layer
  • using direct clone

Using with Nuxt Layer (Simple Way)

nuxt 3 have a new feature called "Nuxt Layer", with this feature you can create a new project with a template that has been provided by the community. you can see on .demo to see how to use this template with nuxt layer.
this is a simple way to use this template :

  • create a new fresh nuxt 3 project with pnpm dlx nuxi@latest init my-app
  • install nuxt awesome deps pnpm add @nuxt-awesome/theme
  • add extends: '@nuxt-awesome/theme' on your nuxt.config.ts file
    # nuxt.config.ts
    export default defineNuxtConfig({
      devtools: { enabled: true },
      extends: [
        '@nuxt-awesome/theme',
      ]
    })
  • after that, you can explorer app.config.ts to see what you can change on this template.
  • remove your app.vue in root project if you want to use our nuxt awesome as root layout.

Using with Direct Clone

you can direct to clone this repository and just make change on app/ folder as your main project folder.

  • clone this repository
    git clone https://github.com/viandwi24/nuxt3-awesome-starter
  • install dependencies
    pnpm install
  • run development server
    pnpm dev