0.1.7 • Published 7 months ago
@monitio/nexu v0.1.7
!WARNING This package is discontinued. Please use the more useful and updated package for Astro called Naxer
Nexu
A WIP web TS framework running using a vite-plugin.
Example:
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + Nexu</title>
</head>
<body>
<p>Working!</p>
</body>Features:
- Removal of
<!DOCTYPE html>and the HTML tags (<html>) - Custom Nexu-only Router
- Custom Components
New Project:
Make a new project using the latest version of Nexu by running the Installation commands below and then either nexu new or nexu create in a terminal.
Installation:
NPM:
!WARNING You will need to have the NPM global folder in PATH for global to work. Sometimes this is automatically done by NPM when installing.
- Globally:
- Install using
npm -g i @monitio/nexu - Run
nexuin a terminal.
- Install using
- Non-Globally:
- Run using
npx @monitio/nexu@latest - This will ask if you want to install the Nexu CLI once so you will need to say
yoryes.
- Run using
YARN:
!TIP There is no way of running tools like NPX does with Yarn so you will need to install globally.
!WARNING You will need to have the Yarn global folder in PATH for global to work. Sometimes this is automatically done by Yarn when installing.
- Globally:
- Install using
yarn global add @monitio/nexu - Run
nexuin a terminal.
- Install using