StanleyMasinde / notes

A simple and fun notes application

Home Page:https://notes-n.netlify.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Netlify Status

Notes App

Inspired by Samsung notes. I wanted to create a web application with the same features as the Samsung notes web application.

How it works

This application is meant to work completely offline. You only need to connect to the internet when installing it or when there is a new update. The underlying tech is the indexedDB API. All your notes are stored on your device's browser storage so clearing your browser data will also delete your notes. You can try it here

Tech used

Features

  • Installable as a PWA.
  • Works fully offline.
  • Share text from other apps to this one.
  • Dark mode uses the system preference.
  • Super small in size (This is where we beat native apps).
  • You can search your notes.

Screenshots

Light mode Dark mode Creation in dark mode With one note

Development

This project uses PNPM for as a package manager. Please maker sure it is installed.

  1. Clone this repositoty
  2. Install dependencies with pnpm install
  3. Run pnpm run dev and you make changes.
  4. Preview live changes on while editing http://localhost:5137

TDD

When developing features that are not UI specific e.g component behaviour, it will be a better experience to use the TDD format. Both testing tools in this project support this.

Use cases
  • When building Vue components (SFCs)
  • When working on a user flow e.g how the application handles typing
  1. For SFCs pnpm run test:unit. This will launch vitest and you can continue to build your application with tests running on every save. This assumes you have already written tests for your expected behaviour. You can also use Cypress for component testing. The Vitest version uses Vue test utils.
  2. For end to end testing, this project uses Cypress. To get started, run
pnpm run build
pnpm run test:e2e

Contributions && suggestions

This project uses both Vitest and Cypress for testing.

Write your unit test in the _tests_ directory and e2e tests in cypress/e2e directory.

All contributions are welcome. If you have suggestions or you'd like to raise a bug raise an issue. Thank you for Stopping by.

About

A simple and fun notes application

https://notes-n.netlify.app

License:MIT License


Languages

Language:Vue 75.9%Language:JavaScript 22.0%Language:HTML 1.9%Language:CSS 0.2%