---
title: "How to start a production server for different frameworks?"
date: "2025-05-07T15:45:57+00:00"
summary: "Learn how to start production servers for Next, Nuxt, React, Angular, and Vue with package.json scripts. Simplify deployment for developers."
image:
type: "article"
url: "/acquia-cloud-platform/add-ons/node-js/help/68541-how-start-production-server-different-frameworks"
id: "d19e0548-b372-47d4-afd3-d7aed614a168"
---

The table below provides `package.json` scripts required to start a production server for various frameworks.

**Framework**

**Package.json scripts**

Next

"scripts": {

   "start": "next start",

   "build": "next build",

 }

Nuxt

"scripts": {

   "start": "node .output/server/index.mjs",

   "build": "nuxt build",

 }

React

"scripts": {

   "start": "react-scripts start",

   "build": "react-scripts build",

 }

Angular

"scripts": {

   "ng": "ng",

   "start": "ng serve --port $PORT --host 0.0.0.0 --disable-host-check --open",

   "build": "ng build",

 }

Vue

"scripts": {

    "start": "http-server vue-app/dist",

    "build": "vue-cli-service build --dest vue-app/dist"

  }