Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/davish/simplestnote
A text editor and note taker so simple it'll blow your mind.
https://github.com/davish/simplestnote
Last synced: 24 days ago
JSON representation
A text editor and note taker so simple it'll blow your mind.
- Host: GitHub
- URL: https://github.com/davish/simplestnote
- Owner: davish
- Created: 2013-02-15T02:40:06.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-04-16T17:29:28.000Z (over 10 years ago)
- Last Synced: 2024-10-15T07:45:44.665Z (2 months ago)
- Language: JavaScript
- Size: 1.42 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SimplestNote
---
***title. tag. save. pretty simple.***
This is just a little weekend projet I'll be working on this weekend. Had an idea for a smart notepad, but really no one has any use for it, so repurposed some of the idea for code in this project. It's the simplest text editor it's not even funny. And it's build on Node (my first project with it). No need to touch your mouse, or even the control key. Only seven little text commands.
- `list: [tag]`
- List all documents on SimplestNote, use the `all` tag for all documents.
- `this.`
- Type this command on the line of the file you want to open after calling `list`, and the file will be opened.
- `title: [title]`
- adds a title to the document.
- `tag: [tags]`
- adds tags to a document.
- `save.`
- Saves the document.
- `help.`
- Shows the help for all the commands.
- `about.`
- Don't really have to explain that one either.---
todo:
- [check] implement commands with no arguments.
- [check] implement commands with multiple arguments (Regular Expressions)
- [check] implement text-insertion, preferably no jQuery
- [] implement backend code