All Projects → taniarascia → Takenote

taniarascia / Takenote

Licence: mit
TakeNote is a note-taking app for the web. You can use the demo app at takenote.dev. It is a static site without a database and does not sync your notes to the cloud. The notes are persisted temporarily in local storage, but you can download all notes in markdown format as a zip.

Programming Languages

typescript
32286 projects
SCSS
7915 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Takenote

notes
Simple text editor for your Markdown and LaTeX notes.
Stars: ✭ 24 (-99.54%)
Mutual labels:  markdown-editor, notes, note-taking, notes-app
flawesome
Productivity Tool
Stars: ✭ 56 (-98.92%)
Mutual labels:  notes, note-taking, notes-app
Foam
A personal knowledge management and sharing system for VSCode
Stars: ✭ 10,993 (+112.22%)
Mutual labels:  note-taking, markdown-editor, notes-app
notes-app-cli
A command line interface for Notes.app on macOS.
Stars: ✭ 32 (-99.38%)
Mutual labels:  notes, note-taking, notes-app
Butterfly
🎨 Powerful, minimalistic, cross-platform, opensource note-taking app
Stars: ✭ 381 (-92.64%)
Mutual labels:  notes, note-taking, notes-app
Nb
CLI and local web plain text note‑taking, bookmarking, and archiving with linking, tagging, filtering, search, Git versioning & syncing, Pandoc conversion, + more, in a single portable script.
Stars: ✭ 3,846 (-25.75%)
Mutual labels:  note-taking, notes, notes-app
uwunote
Kinda like Windows 10 Sticky notes but subjectively better - Written in go and GTK3+
Stars: ✭ 16 (-99.69%)
Mutual labels:  notes, note-taking, notes-app
monte-note
Note taking application with a rich set of editing and management features
Stars: ✭ 63 (-98.78%)
Mutual labels:  notes, note-taking, notes-app
notesnook
A fully open source & end-to-end encrypted note taking alternative to Evernote.
Stars: ✭ 5,098 (-1.58%)
Mutual labels:  notes, note-taking, notes-app
octo
Build your knowledge base
Stars: ✭ 252 (-95.14%)
Mutual labels:  markdown-editor, notes, note-taking
notey.app
📝 A notes app to keep track of important things
Stars: ✭ 17 (-99.67%)
Mutual labels:  notes, notes-app
NoteUsingRoom
Note Apps using Room database
Stars: ✭ 18 (-99.65%)
Mutual labels:  notes, notes-app
noted
Markdown note-taking with syntax highlighting and real-time preview.
Stars: ✭ 22 (-99.58%)
Mutual labels:  markdown-editor, note-taking
graphite
✍️ A local-first Markdown note-taking app built with Vue.js, Tailwind CSS, and Electron.
Stars: ✭ 17 (-99.67%)
Mutual labels:  markdown-editor, note-taking
Deer
✏️A modern, fast, beautiful note taking app, built on Electron and React
Stars: ✭ 267 (-94.85%)
Mutual labels:  note-taking, notes
Issue Tracker Zh
中文GitHub反馈区
Stars: ✭ 267 (-94.85%)
Mutual labels:  note-taking, notes
BoostNote.next-local
Boost Note next local spaces is lightspeed workspace for developers
Stars: ✭ 89 (-98.28%)
Mutual labels:  markdown-editor, note-taking
rnote
A simple drawing application to create handwritten notes.
Stars: ✭ 1,538 (-70.31%)
Mutual labels:  notes, notes-app
Vscode Memo
Markdown knowledge base with bidirectional [[link]]s built on top of VSCode
Stars: ✭ 266 (-94.86%)
Mutual labels:  note-taking, markdown-editor
Lifelong Learning
✅ ✅ ✅ A massive repo filled with notes on everything from coding to philosophy to psychology to marketing to product
Stars: ✭ 297 (-94.27%)
Mutual labels:  note-taking, notes

Coverage Status

A web-based notes app for developers. (Demo only)

Screenshot

Features

  • Plain text notes - take notes in an IDE-like environment that makes no assumptions
  • Markdown preview - view rendered HTML
  • Linked notes - use {{uuid}} syntax to link to notes within other notes
  • Syntax highlighting - light and dark mode available (based on the beautiful New Moon theme)
  • Keyboard shortcuts - use the keyboard for all common tasks - creating notes and categories, toggling settings, and other options
  • Drag and drop - drag a note or multiple notes to categories, favorites, or trash
  • Multi-cursor editing - supports multiple cursors and other Codemirror options
  • Search notes - easily search all notes, or notes within a category
  • Prettify notes - use Prettier on the fly for your Markdown
  • No WYSIWYG - made for developers, by developers
  • No database - notes are only stored in the browser's local storage and are available for download and export to you alone
  • No tracking or analytics - 'nuff said
  • GitHub integration - self-hosted option is available for auto-syncing to a GitHub repository (not available in the demo)

About

TakeNote is a note-taking app for the web. You can use the demo app at takenote.dev. It is a static site without a database and does not sync your notes to the cloud. The notes are persisted temporarily in local storage, but you can download all notes in markdown format as a zip.

Hidden within the code is an alternate version that contain a Node/Express server and integration with GitHub. This version involves creating an OAuth application for GitHub and signing up to it with private repository permissions. Instead of backing up to local storage, your notes will back up to a private repository in your account called takenote-data. Due to the following reasons I'm choosing not to deploy or maintain this portion of the application:

  • I do not want to maintain a free app with users alongside my career and other commitments
  • I do not want to request private repository permissions from users
  • I do not want to maintain an active server
  • I do not want to worry about GitHub rate limiting from the server
  • There is no way to batch create many files from the GitHub API, leading to a suboptimal GitHub storage solution

However, I'm leaving the code available so you can feel free to host your own TakeNote instance or study the code for learning purposes. I do not provide support or guidance for these purposes.

TakeNote was created with TypeScript, React, Redux, Node, Express, Codemirror, Webpack, Jest, Cypress, Feather Icons, ESLint, and Mousetrap, among other awesome open-source software.

Reviews

"I think the lack of extra crap is a feature." — Craig Lam

Demo Development

Clone and install.

git clone [email protected]:taniarascia/takenote
cd takenote
npm i

Run a development server.

npm run client

Full Application Development (self-hosted)

Pre-Installation

Before working on TakeNote locally, you must create a GitHub OAuth app for development.

Go to your GitHub profile settings, and click on Developer Settings.

Click the New OAuth App button.

  • Application name: TakeNote Development
  • Homepage URL: http://localhost:3000
  • Authorization callback URL: http://localhost:3000/api/auth/callback

Create a .env file in the root of the project, and add the app's client ID and secret. Remove DEMO variable to enable GitHub integration.

CLIENT_ID=xxx
CLIENT_SECRET=xxxx
DEMO=true

Change the URLs to port 5000 in production mode or Docker.

Installation

git clone [email protected]:taniarascia/takenote
cd takenote
npm i

Development mode

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 frontend. To run both of these servers concurrently, run the dev command.

npm run dev

Go to localhost:3000 to view the app.

API requests will be proxied to port 5000 automatically.

Production mode

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

npm run build && npm run start

Go to localhost:5000 to view the app.

Run in Docker

Follow these instructions to build an image and run a container.

# Build Docker image
docker build --build-arg CLIENT_ID=xxx -t takenote:mytag .

# Run Docker container in port 5000
docker run \
-e CLIENT_ID=xxx \
-e CLIENT_SECRET=xxxx \
-e NODE_ENV=development \
-p 5000:5000 \
takenote:mytag

Go to localhost:5000 to view the app.

Note: You will see some errors during the installation phase, but these are simply warnings that unnecessary packages do not exist, since the Node Alpine base image is minimal.

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/integration tests.

npm run test

If using Jest Runner in VSCode, add "jestrunner.configPath": "config/jest.config.js" to your settings

Run Cypress end-to-end tests.

# In one window, run the application
npm run client

# In another window, run the end-to-end tests
npm run test:e2e:open

Contributing

TakeNote is an open source project, and contributions of any kind are welcome and appreciated. Open issues, bugs, and feature requests 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.

View CONTRIBUTING.md to learn about the style guide, folder structure, scripts, and how to contribute.

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

⚠️ 💻

Michael Huynh

💻 🐛

Joshua Bloom

💻

Mxchaeltrxn

💻 ⚠️

Konrad Staniszewski

📖

Yohix

🚧

Jackson Elfers

💻

Vamshi

💻

Simos

💻 ⚠️

Yankee

💻 🤔 ⚠️

G-Milevski

💻

Kody Clemens

💻 ⚠️ 🐛

Vladimir Yamshikov

💻 🐛

Ronan D'Souza

💻

Roland Fredenhagen

💻

Pranjali Pramod Patil

⚠️

Chris Bargmann

🤔 💻

Jadhiel Vélez

💻 🐛

Lucas Machado

💻 🐛 ⚠️

xsteadybcgo

🐛

Marius Robert RWANDARUSHYA

⚠️

Isaac Komezusenge

⚠️

Maxime Ishimwe

⚠️

Marcos Spanholi

⚠️

Roshan Rajeev

💻

fistonhn

⚠️

Raffaele Ferri

🚧

Dusabe Johnson

⚠️

tomasvn

💻

Lucas Ribeiro

💻 ⚠️

Bartosz Zagrodzki

💻

Mahendran Mookkiah

💻

hkhattabii

💻

Federico Pomponii

💻

Acknowledgements

Author

License

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].