michelc / takenote

πŸ“ A web-based note-taking app with GitHub sync and Markdown support. (WIP)

Home Page:https://takenote.dev

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

A web-based note-taking app with GitHub sync and Markdown support. (WIP)

Warning: TakeNote is still in active development. You can visit takenote.dev to see the work in progress, but your account and the notes you create are temporary will not be persisted. All data will be lost once GitHub integration is complete.

Screenshot

Simple

TakeNote was made by developers for developers - a simple, plain-text note-taking app for the web with Markdown support. What you see is what you paste. No WYSIWIG, no formatting pasted from the web, and no features you don't need or want.

Organized

Drag-and-drop notes into categories, instantly search through notes, and pin your favorites to the top.

Beautiful

Beautiful, clean design with light and dark themes.

Sync to GitHub

In progress!

Reviews

"I think the lack of extra crap is a feature." β€” Craig Lam

Setup

Install

git clone git@github.com:taniarascia/takenote
cd takenote
npm i

Development

In the development environment, an Express server is running on port 5000 to handle all API calls, and a hot Webpack dev server is running on port 3000 for the React front end. To run both of these servers concurrently, run the dev command.

# Run client and server concurrently
npm run dev

Go to localhost:3000 to view the app.

API requests will be proxied to port 5000 automatically.

Production

In production, the React app is built, and Express redirects all incoming requests to the dist directory on port 5000.

# Build client for production and start server
npm run build && npm run start

Go to localhost:5000 to view the app.

Run in Docker

Docker containers are also available on the Dockerhub registry.

docker build -t takenote .
docker run -p 5000:5000 takenote
# Go to localhost:5000 to view the application

Seed data

To seed the app with some test data, paste the contents of seed.js into your browser console.

Testing

Run unit and component tests.

npm run test

Run Cypress e2e tests.

npm run cypress:open

Contributing

TakeNote is an open source project, and contributions of any kind are welcome! Open issues, bugs, and enhancements are all listed on the issues tab and labeled accordingly. Feel free to open bug tickets and make feature requests. Easy bugs and features will be tagged with the good first issue label.

The project is written in TypeScript, React and Redux. TypeScript is set to strict mode, with no implicit any allowed. The formatting style for the project is set by Prettier.

Contributors

Thanks goes to these wonderful people:


Tania Rascia

πŸ’» πŸ€” πŸ›

hankolsen

πŸ’» πŸ› ⚠️

Joseph Perez

πŸ’»

Paul

πŸ’» ⚠️

Martin Rosenberg

πŸ’» πŸ› 🚧

Melissa

πŸ’»

Jason Towle

πŸ’»

Mark Erikson

πŸ€”

Alphonse Bouy

πŸ›

dave2kb

🎨 πŸ€”

Devin McIntyre

πŸ’»

Jeffrey Fisher

πŸ›

Alex Dong

πŸ’»

Publicker

πŸ’»

Jakub NaskrΔ™ski

πŸ’» πŸ› ⚠️

Benny O

πŸ’»

Justin Payne

πŸ’»

marshmallow

🚧

Jose Felix

πŸ’»

Nikolay Kirsh

πŸ’»

Mudassar Ali

πŸ’»

Nathan Bland

πŸ› πŸ’»

Craig Lam

πŸ’» πŸ› ⚠️

Ashinze Ekene

πŸ› πŸ’»

Harry Sullivan

πŸ’»

Mauricio MartΓ­nez

πŸ’»

Black-Hole

πŸ’»

Frank Blendinger

πŸ’»

Eduardo Reveles

πŸ’»

Leo Royzengurt

πŸ’» πŸ›

kcvgan

πŸ’» πŸ›

Cody Towstik

πŸ’» ⚠️ πŸ›

Vincent DΓΆrig

⚠️ πŸ’»

Acknowledgements

Author

License

This project is open source and available under the MIT License.

About

πŸ“ A web-based note-taking app with GitHub sync and Markdown support. (WIP)

https://takenote.dev

License:MIT License


Languages

Language:TypeScript 69.5%Language:CSS 21.7%Language:JavaScript 7.1%Language:Shell 1.2%Language:Dockerfile 0.4%Language:HTML 0.2%