On this page
Build a Nuxt app with Deno
Nuxt is a framework that provides an intuitive way to create full-stack applications based on Vue. It offers file-based routing, a variety of rendering options, and automatic code splitting out of the box. With its modular architecture, Nuxt simplifies the development process by providing a structured approach to building Vue applications.
In this tutorial, we'll build a simple Nuxt application with Deno that will display a list of dinosaurs and allow you to learn more about each one when you click on the name:
You can find the code for this project in this repo.
Scaffold a Nuxt app with Deno Jump to heading
We can create a new Nuxt project using deno like this:
deno -A npm:nuxi@latest init
We'll use Deno to manage our package dependencies, and can grab the Nuxt package from npm. This will create a nuxt-app with this project structure:
NUXT-APP/
├── .nuxt/ # Nuxt build directory
├── node_modules/ # Node.js dependencies
├── public/ # Static files
│ ├── favicon.ico
│ └── robots.txt
├── server/ # Server-side code
│ └── tsconfig.json
├── .gitignore
├── app.vue # Root Vue component
├── nuxt.config.ts # Nuxt configuration
├── package-lock.json # NPM lock file
├── package.json # Project manifest
├── README.md
└── tsconfig.json # TypeScript configuration
Setup server API routes Jump to heading
Let’s first start by creating the API routes that serve the dinosaur data.
First, our
dinosaur data
will live within the server directory as server/api/data.json
:
// server/api/data.json
[
{
"name": "Aardonyx",
"description": "An early stage in the evolution of sauropods."
},
{
"name": "Abelisaurus",
"description": "\"Abel's lizard\" has been reconstructed from a single skull."
},
{
"name": "Abrictosaurus",
"description": "An early relative of Heterodontosaurus."
},
...
]
This is where our data will be pulled from. In a full application, this data would come from a database.
⚠️️ In this tutorial we hard code the data. But you can connect to a variety of databases and even use ORMs like Prisma with Deno.
Next, let’s add type definitions for our dinosaur data. We’ll put it in a new
folder, types
:
// types/index.ts
export interface Dino {
name: string;
description: string;
}
We’ll create two API routes to serve the following:
- the full list of dinosaurs for an index page
- individual dinosaur information for an individual dinosaur page
Both will be *.get.ts
files, which Nuxt automatically converts to API
endpoints to respond to GET requests.
The filename convention determines both the HTTP method and the route path.
The initial dinosaurs.get.ts
is fairly simple and uses
defineCachedEventHandler
to create a cached
endpoint for better performance. This handler simply returns our full dinosaur
data array without any filtering:
// server/api/dinosaurs.get.ts
import { defineCachedEventHandler } from "#imports";
import data from "./data.json" with { type: "json" };
export default defineCachedEventHandler(() => {
return data;
});
The GET
route for the individual dinosaur has a little more logic. It extracts
the name parameter from the event context, performs case-insensitive matching to
find the requested dinosaur, and includes proper error handling for missing or
invalid dinosaur names. To pass the name parameter, let’s name this route as
[name].get.ts
:
// server/api/dinosaurs/[name].get.ts
import { defineCachedEventHandler } from "#imports";
import data from "../data.json";
import { H3Event } from "h3";
export default defineCachedEventHandler((event: H3Event) => {
const name = event.context.params?.name;
if (!name) {
throw createError({
statusCode: 400,
message: "No dinosaur name provided",
});
}
const dinosaur = data.find(
(dino) => dino.name.toLowerCase() === name.toLowerCase(),
);
if (!dinosaur) {
throw createError({
statusCode: 404,
message: "Dinosaur not found",
});
}
return dinosaur;
});
Awesome. When we run the server with deno task dev
and point our browser to
localhost:3000/api/dinosaurs
, we can see the raw JSON response showing all of
the dinosaurs:
You can also retrieve data for a single dinosaur by going to
localhost:3000/api/dinosaurs/aardonyx
.
Next, let’s setup the frontend with Vue to display the index page and each individual dinosaur page.
Setup Vue frontend Jump to heading
We want to set up two pages within our app:
- An index page which will list all our dinosaurs
- An individual dinosaur page showing more information about our selected dinosaur.
Let’s first create the index page. Since Nuxt uses
file-system routing, let’s
create a pages
directory and within that, our index page at pages/index.vue
.
To get the data, we’ll use the useFetch
composable to hit the API endpoint we
created in the previous section:
// pages/index.vue
<script setup lang="ts">
import type { Dino } from "~/types";
import { useFetch } from "nuxt/app";
const { data: dinosaurs } = await useFetch<Dino[]>("/api/dinosaurs");
</script>
<template>
<main>
<h1 class="text-2xl font-bold mb-4">Welcome to the Dinosaur app</h1>
<p class="mb-4">Click on a dinosaur below to learn more.</p>
<ul class="space-y-2">
<li v-for="dinosaur in dinosaurs" :key="dinosaur.name">
<NuxtLink
:to="'/' + dinosaur.name.toLowerCase()"
class="text-blue-600 hover:text-blue-800 hover:underline"
>
{{ dinosaur.name }}
</NuxtLink>
</li>
</ul>
</main>
</template>
For our next page that shows information for each dinosaur, let’s create a
dynamic page: pages/[name].vue
. This page uses Nuxt's
dynamic route parameters,
where the [name]
in the filename can be accessed in JavaScript as
route.params.name
. We’ll use the useRoute
composable to access the route
parameters and useFetch
to get the specific dinosaur's data based on the name
parameter:
// pages/[name].vue
<script setup lang="ts">
import type { Dino } from "~/types";
import { useFetch, useRoute } from "nuxt/app";
const route = useRoute();
const { data: dinosaur } = await useFetch<Dino>(
`/api/dinosaurs/${route.params.name}`
);
</script>
<template>
<main v-if="dinosaur">
<h1 class="text-2xl font-bold mb-4">{{ dinosaur.name }}</h1>
<p class="mb-4">{{ dinosaur.description }}</p>
<NuxtLink to="/" class="text-blue-600 hover:text-blue-800 hover:underline">
Back to all dinosaurs
</NuxtLink>
</main>
</template>
Next, we’ll have to connect these Vue components together so that they render
properly when we visit the root of the domain. Let’s update app.vue
at the
root of the directory to serve our application’s root component. We’ll use
NuxtLayout
for consistent
page structure and NuxtPage
for dynamic page rendering:
// app.vue
<template>
<NuxtLayout>
<div>
<nav class="p-4 bg-gray-100">
<NuxtLink to="/" class="text-blue-600 hover:text-blue-800">
Dinosaur Encyclopedia
</NuxtLink>
</nav>
<div class="container mx-auto p-4">
<NuxtPage />
</div>
</div>
</NuxtLayout>
</template>;
Let’s run our server with deno task dev
and see how it looks at
localhost:3000
:
Looks great!
Add Tailwind Jump to heading
Like we said, we're going to add a little bit of styling to this application. First, we'll set up a layout which will provide a consistent structure across all pages using Nuxt's layout system with slot-based content injection:
// layouts/default.vue
<template>
<div>
<slot />
</div>
</template>;
In this project, we’re also going to use tailwind for some basic design, so we need to install those dependencies:
deno install -D npm:tailwindcss npm:postcss npm:autoprefixer
Then initialize Tailwind:
deno -A npm:tailwindcss init
This will create a tailwind.config.js
file in the root of our directory. Let’s
open that up and update the content
section to include key files in our
project:
// tailwind.config.js
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./components/**/*.{js,vue,ts}",
"./layouts/**/*.vue",
"./pages/**/*.vue",
"./plugins/**/*.{js,ts}",
"./app.vue",
],
theme: {
extend: {},
},
plugins: [],
};
Next, let’s add the tailwind utilities to a new css file, assets/css/main.css
:
// assets/css/main.css
base;
components;
utilities;
The only other thing we'll need to do is update our nuxt.config.ts
file to
configure our Nuxt application for Deno compatibility, enable development tools,
and set up Tailwind CSS. We're disabling SSR and instead generating the entire
site for the greatest flexibility in deployment options, and setting up proper
meta tags for SEO.
// nuxt.config.ts
import { defineNuxtConfig } from "nuxt/config";
export default defineNuxtConfig({
devtools: { enabled: true },
ssr: false,
nitro: {
preset: "deno",
},
modules: ["@nuxt/devtools"],
app: {
head: {
title: "Dinosaur Encyclopedia",
meta: [
{ charset: "utf-8" },
{ name: "viewport", content: "width=device-width, initial-scale=1" },
],
},
},
css: ["~/assets/css/main.css"],
postcss: {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
},
compatibilityDate: "2024-11-06",
});
Running Our Application Jump to heading
We can then run our application using:
deno task dev
This will start the app at localhost:3000:
And we’re done!
Next steps Jump to heading
Next steps for a Nuxt app might be to add authentication using the Nuxt Auth module, implement state management with Pinia, add server-side data persistence with Prisma or MongoDB, and set up automated testing with Vitest. These features would make it production-ready for larger applications.