Nuxt.js Frontend Website Development

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:
Development stages
Latest works
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    847
  • image_website-sbh_0.png
    Website development for SBH Partners
    999
  • image_website-_0.png
    Website development for Red Pear
    451

Nuxt.js Frontend Website Development

Nuxt.js is a meta-framework for Vue 3 with SSR, SSG, file-based routing, and server capabilities. For Vue what Next.js is for React. Nuxt 3 uses Nitro as server engine — it deploys to Node.js, Vercel, Netlify Edge Functions, Cloudflare Workers.

File-based routing

pages/
├── index.vue          → /
├── about.vue          → /about
├── blog/
│   ├── index.vue      → /blog
│   └── [slug].vue     → /blog/:slug
└── [...slug].vue      → catch-all route

Each file in pages/ is a route. No router configuration.

useAsyncData and useFetch

<script setup>
const { data: posts, pending, error } = await useFetch('/api/posts', {
  query: { page: 1, limit: 10 },
  lazy: false, // wait for data before render (SSR)
});

// Or with transformation
const { data } = await useAsyncData('posts', () =>
  $fetch('/api/posts').then(r => r.items)
);
</script>

useFetch and useAsyncData execute once on the server, result passes to client via useNuxtApp().payload — no duplicate request on client (deduplication).

Server Routes (Nitro)

Nuxt 3 allows writing server logic next to UI:

// server/api/posts/[id].get.ts
export default defineEventHandler(async (event) => {
  const id = getRouterParam(event, 'id');
  const post = await db.post.findUnique({ where: { id: Number(id) } });
  if (!post) throw createError({ statusCode: 404 });
  return post;
});

Files in server/api/ become API endpoints. .get.ts, .post.ts — HTTP method defined by filename.

Nuxt Content

@nuxt/content plugin turns Markdown/YAML files into a database:

<script setup>
const { data: post } = await useAsyncData(() =>
  queryContent('/blog').where({ _path: '/blog/my-post' }).findOne()
);
</script>

<template>
  <ContentRenderer :value="post" />
</template>

Perfect for documentation sites, blogs, content sites.

SEO and useHead

<script setup>
useHead({
  title: 'Page Title | Site',
  meta: [
    { name: 'description', content: 'Description' },
    { property: 'og:image', content: '/og.jpg' },
  ],
  link: [{ rel: 'canonical', href: 'https://example.com/page' }],
});
</script>

Or via useSeoMeta composable:

useSeoMeta({ title: 'Title', ogTitle: 'OG Title', description: 'Desc' });

Nuxt Modules

Ecosystem of ready-to-use modules:

  • @nuxt/image — image optimization (analog of Next Image)
  • @nuxtjs/tailwindcss — Tailwind CSS
  • @pinia/nuxt — Pinia SSR-compatible
  • nuxt-auth-utils — simplified authorization
  • @nuxt/ui — UI components from Nuxt team

Deployment

nuxt build + node .output/server/index.mjs — Node.js server. nuxt generate — static site. Vercel/Netlify auto-detect Nuxt. Docker: standard Node.js image.

Timeline

Site on Nuxt.js with SSR/SSG, Nuxt Content, SEO: 1–3 weeks. SPA with backend integration, authorization, complex UI: 2–5 weeks.