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-compile-markdown

v0.1.0

Published

Nuxt Module to compile markdown files into Vue SFC at build time.

Downloads

101

Readme

Nuxt Compile Markdown

npm version npm downloads License Nuxt

Nuxt Module to compile markdown files into Vue SFC at build time. This enables you to put .md files into your pages/ directory as standalone pages, and .md under components/ directory as Vue components. With components auto-import built-in in Nuxt, you can also use any components in your markdown files.

  • 📚 Write pages & components in Markdown
  • 💚 Use Vue components in Markdown.
  • 👌 Support SEO & Page Meta
  • 📦 Built-in support for MDC (Markdown Components)
  • 🧑‍💻 Syntax highlighting with light/dark mode support

Install

  1. Add nuxt-compile-markdown dependency to your project
# Using pnpm
pnpm add -D nuxt-compile-markdown

# Using yarn
yarn add --dev nuxt-compile-markdown

# Using npm
npm install --save-dev nuxt-compile-markdown
  1. Add nuxt-compile-markdown to the modules section of nuxt.config.ts
export default defineNuxtConfig({
  modules: [
    'nuxt-compile-markdown'
  ]
})
  1. Create your components or pages as Markdown ✨
components/
  HelloWorld.md
pages/
  about.md
  index.md

SEO & Page Meta

Use the seo property in the frontmatter to leverage useSeoMeta():

---
seo:
  title: My title
  description: My description
  ogImage: https://example.com/image.png
  twitterCard: summary_large_image
---

# My page

Will be transformed to:

<script setup>
useSeoMeta({
  title: 'My title',
  description: 'My description',
  ogImage: 'https://example.com/image.png',
  twitterCard: 'summary_large_image'
})
</script>

<-- template --->

Note: Use title and description as shortcut for seo.title and seo.description

Use the meta property in the frontmatter to leverage definePageMeta() for the pages/ directory:

---
meta:
  layout: dark
  middleware: log
---

# My page

Will be transformed to:

<script setup>
definePageMeta({
  layout: 'dark',
  middleware: 'log'
})
</script>

<-- template --->

Frontmatter

The frontmatter is parsed and injected into Vue's instance data frontmatter field.

---
name: My Page
---

# Hello World

This is {{ frontmatter.name }}

Import Markdown as Vue components

With Nuxt auto-import, all Markdown files inside the components/ directory will be imported when used:

components/
  HelloWorld.md
pages/
  index.md

Then in your pages/index.md:

I can use a Markdown component:

<HelloWorld />

MDC (Markdown Components) support is also built-in, meaning you can also do:

Inline :my-component{name="World"} syntax.

::HelloWorld
And also **block** syntax{.text-green}
::

If the Markdown is not inside the components/ directory, you can import it and use it as a normal Vue component:

<script setup>
import Readme from '../README.md'
</script>

<template>
  <Readme />
</template>

Syntax Highlighting

We have shiki built-in for syntax highlighting. It's enabled by default and supports light/dark mode out of the box.

To apply the dark mode theme, you will need to add a bit of CSS:

Query-based Dark Mode
@media (prefers-color-scheme: dark) {
  .shiki,
  .shiki span {
    background-color: var(--shiki-dark-bg) !important;
    color: var(--shiki-dark) !important;
  }
}
Class-based Dark Mode
html.dark .shiki,
html.dark .shiki span {
  background-color: var(--shiki-dark-bg) !important;
  color: var(--shiki-dark) !important;
}

You can learn more about the Dual Themes support.

<script> and <style>

Root-level <script> and <style> tags in Markdown files work just like they do in Vue SFCs, including <script setup>, <style module>, etc. The main difference here is that there is no <template> tag: all other root-level content is Markdown. Also note that all tags should be placed after the frontmatter:

---
hello: world
---

<script setup>
const count = ref(0)
</script>

## Markdown Content

The count is: {{ count }}

<button @click="count++">Increment</button>

Avoid <style scoped> in Markdown: When used in Markdown, <style scoped> requires adding special attributes to every element on the current page, which will significantly bloat the page size. is preferred when locally-scoped styling is needed in a page.

FAQ

How does this compare to @nuxt/content?

nuxt-compile-markdown works at built time and converts the Markdown files to Vue files for maximum performance. This module does not have the ability to query content like Nuxt Content Query Builder.