TLV300 Home Assignment using Nuxt V3 and Primevue
-
Clone this repository to your local machine.
-
Install the necessary dependencies by running the following commands:
#npm npm install
#pnpm pnpm install
#yarn yarn install
-
Obtain your free Whois API key from WhoisXML API. Follow these steps:
- Visit WhoisXML and sign up for an account.
- Once logged in, navigate to settings under your user after logging in.
- Copy or generate a new API key
-
Copy
env.example
to.env
# linux/bash cp .env.example .env
# windows/cmd copy .env.example .env
Start the development server on http://localhost:3000
:
# npm
npm run dev
# pnpm
pnpm run dev
# yarn
yarn dev
# bun
bun run dev
Build the application for production:
# npm
npm run build
# pnpm
pnpm run build
# yarn
yarn build
# bun
bun run build
Locally preview production build:
# npm
npm run preview
# pnpm
pnpm run preview
# yarn
yarn preview
# bun
bun run preview
Check out the deployment documentation for more information.