Get Started
Welcome to Nexsas. This guide shows you how to set up your environment and run your first project locally.
Download and extract
- Download the Nexsas package from your purchase email or marketplace account.
- Extract the
.zipfile to your preferred location.
After extraction, you will see template folders such as:
ai-agencyai-saas-softwareai-voice-generationai-application...and more
If you only want to preview a static version, open a project folder and double-click index.html. It will open in your browser.
For development and customization, use the source code from the development files in the next steps.
Prerequisites
Before you begin, make sure you have:
- Node.js (16.14 or higher) (Download)
- Operating System: Windows, macOS, or Linux
- Code editor: VS Code, Cursor, WebStorm, or any editor you prefer
- Terminal/Command Line access
Get development code
Inside the extracted package, you will find DEVELOPMENT-FILES-LINK.pdf.
- Open the PDF file.
- Choose the template link you want to download.
- Download and extract the template
.zipfile. - Open the extracted project folder in your code editor.
Install dependencies
# Go to your project folder
cd [project-name]
# Install dependencies with npm
npm install
# OR install dependencies with yarn
yarn install
# If yarn is not installed yet
npm install -g yarn
Start the development server
yarn dev
You should see output similar to:
✓ Development server started
➜ Local: http://localhost:5173/
➜ Network: http://192.168.1.x:5173/
Your Nexsas site is now available at http://localhost:5173/.
Command reference
yarn install: Installs project dependenciesyarn dev: Starts the development server with hot reloadyarn build: Creates a production buildyarn preview: Previews the production build locallyyarn format: Formats code using Prettier
Verify your setup
After setup, confirm everything is working:
- Dev server is running: Open
http://localhost:5173/ - Hot reload works: Make a small code change and confirm the page updates
- No console errors: Check browser developer tools
Next steps
- Explore the Customization Guide →
- Review the project structure, especially the
src/folder - Start customizing the template for your project needs
title: Get Started description: Set up your Nexsas development environment and run your first site locally. navigation: icon: i-lucide-rocket order: 1 seo: title: Getting Started description: Set up Nexsas locally, install dependencies, and start the dev server.
Welcome to Nexsas. This guide walks you through setting up your development environment and running your first site locally.
Download and extract
- Download the Nexsas package from your purchase confirmation email or your marketplace account.
- Extract the downloaded
.zipfile to your preferred location.
After extraction, you will see all the template folders:
ai-agencyai-saas-softwareai-voice-generationai-application...rest of projects folder
If you want to run a specific project, then go to the project and double click on the index.html file. it will open in your browser.
Note: Those folder are only production ready code. For development code, you need to follow the this steps.
Prerequisites
Before you begin, make sure you have:
- Node.js (16.14 or above) (Download)
- Operating System: Windows, macOS, or Linux
- Code editor: VS Code, WebStorm, or your preferred editor
- Terminal/Command Line access
Get development code
After extraction there have a DEVELOPMENT-FILES-LINK.pdf file. Open the pdf file . After open the file, you will see all the template links, click the link what you want to download. after downloading, extract the downloaded .zip file to your preferred location. Open the project with your preferred code editor.
Install dependencies
# Navigate to your project folder
cd [project-name]
# Install project dependencies by npm package manager
npm install
#OR
# Install project dependencies by yarn package manager
yarn install
# (Install yarn if not already installed)
npm install -g yarn
npm install instead of yarn install.Start the development server
yarn dev
You should see output similar to:
✓ Development server started
➜ Local: http://localhost:5173/
➜ Network: http://192.168.1.x:5173/
Your Nexsas site will be available at http://localhost:5173/.
Command reference
yarn install: Install project dependenciesyarn dev: Start the development server (hot reload)yarn build: Create a production buildyarn preview: Preview the production build locallyyarn format: Format code with Prettier
Verify your setup
After installation, verify everything is working:
- Dev server running: open
http://localhost:5173/ - Hot reload working: make a small change and confirm the browser updates
- No console errors: check browser developer tools
Next steps
- Explore the Customization Guide →
- Review the project structure and get familiar with the
src/folder - Start customizing the template to match your requirements