https://github.com/jongacnik/bwave
Command line notes
https://github.com/jongacnik/bwave
Last synced: about 1 year ago
JSON representation
Command line notes
- Host: GitHub
- URL: https://github.com/jongacnik/bwave
- Owner: jongacnik
- Created: 2015-09-13T23:06:40.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-09-13T23:07:10.000Z (almost 11 years ago)
- Last Synced: 2024-10-22T23:58:52.731Z (over 1 year ago)
- Language: JavaScript
- Size: 105 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bwave
**bwave** a.k.a **brainwave** a.k.a command line notes.
Originally fork of [Ajour](https://github.com/gopatrik/ajour)
## Install
```bash
npm i bwave -g
```
## Usage
Make entry:
```bash
bwave A brainwave
```
Will create **bwave.md** (if no existy) in the current directory with entry appended.
**bwave.md**:
```markdown
## Sun Sep 13 2015 15:49:33 GMT-0700 (PDT)
A brainwave
```
### Tailing
Tail onto previous entry with `-t` flag (no timestamp):
```bash
$ bwave A brainwave
$ bwave Another brainwave -t
```
**bwave.md**:
```markdown
## Sun Sep 13 2015 15:49:33 GMT-0700 (PDT)
A brainwave
Another brainwave
```
### Global
By default bwave writes to current directory. Write to secret log in module directory with `-g` flag:
```bash
bwave A secret brainwave -g
```
### Viewing
You can output the contents of **bwave.md** by running without a message:
```bash
$ bwave
```
Adding `-g` flag will output contents of global log:
```bash
$ bwave -g
```
### Flags
```
-t -- Tail onto previous note (no timestamp)
-g -- Global log file (located in module directory)
```
## Todo
- config options
- prepend option