Skip to content

Vite and Node.js: Running a Local Server

Bryan M Lecza edited this page Dec 5, 2023 · 14 revisions

Introduction

In order to build our frontend, we needed to see what our website looked like as we constructed it. In order to do this, we needed to run a local server which could host our website and show live edits. The tools we used for this were Node.js and Vite.

Node.js

Bryan Lecza