Skip to content

edcheyjr/notes-app

Repository files navigation

What this project does

this the UI for node-api and interacts with the api giving the user the abilty to add delete and view his or her notes.

How to run locally (Assumptiion the api is being served at http://localhost:8080)

the application will be opened in the following url: https:localhost:5173

ensure you have nodejs and npm installed in your machine also ensuer you have the serve part running in you machine

  • the clone this repository into your machine like this:
git clone https://github.com/edchejr/notes-app.git

  • then do git pull check of any changes
git pull origin master

  • go to that directory i.e:
cd notes-app

  • then run the following commands
npm install
npm run dev

The App Interface

no-note notes adding modal Sucessfull deleted a note

Vue 3 + TypeScript + Vite

This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 <script setup> SFCs, check out the script setup docs to learn more.

Recommended IDE Setup

Type Support For .vue Imports in TS

TypeScript cannot handle type information for .vue imports by default, so we replace the tsc CLI with vue-tsc for type checking. In editors, we need TypeScript Vue Plugin (Volar) to make the TypeScript language service aware of .vue types.

If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a Take Over Mode that is more performant. You can enable it by the following steps:

  1. Disable the built-in TypeScript Extension
    1. Run Extensions: Show Built-in Extensions from VSCode's command palette
    2. Find TypeScript and JavaScript Language Features, right click and select Disable (Workspace)
  2. Reload the VSCode window by running Developer: Reload Window from the command palette.