1
0
Derivar 0
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
呓喵酱 8c5c17454a
Update README.md
há 3 anos
modules fix index.js bugs há 4 anos
utilities v1.0.3 fix pull bugs há 4 anos
.gitignore v1.0.2 há 4 anos
LICENSE Initial commit há 4 anos
README.md Update README.md há 3 anos
old.js v1.0 há 4 anos
package-lock.json v1.0.3 fix pull bugs há 4 anos
package.json v1.0.4 há 4 anos
server.js v1.0.2 há 4 anos
td fix index.js bugs há 4 anos
test.js fin mixed há 4 anos
yarn-error.log fix bugs há 4 anos
yarn.lock v1.0 há 4 anos

README.md

todo-ddl

Manage your ToDo items with Logs and DDLs on nodejs.

Quick Start

Installation

$ npm i -g todo-ddl

Find Help

$ td -h

Architecture

overview

|todo-ddl
|
|---config
|   |---email
|   |---remote url
|
|---td
|   |---todo
|   |---task
|   |---history
|
|---ddl
|
|---log
|

td structure


td new        td add        td done
------>      -------->     --------->
        todo          task           history
<------     <--------      <---------
  td rm       td return      td recover

Commands

config set

  • td config [-e email] [-r remote]: Set

td set

  • td new <name> [class]: Create new todo item..

  • td add <id>: Add todo item to task..

  • td done <id>: Finish task..

  • td recover: Recover task from history..

  • td return <id>: Return task to todo item..

  • td rm <id>: Remove task..

  • td ls: List tasks..

  • td lt: List todo items..

  • td history: List history

log set

  • td select <id>: Select task for loging..
  • td log <comment>: Record logs..
  • td ll: List logs..
  • td rml <id>: Remove log..

ddl (deadline) set

  • td newd <name> <date>: Create new ddl..
  • td link <ddlID> <tdID>: Link todo with ddl..
  • td ld: List ddls..
  • td rmd <id>: Remove ddl..

systemctl

  • td init: Reset all..
  • td push: Push local to remote..
  • td pull: Pull from remote..
  • td sync: Sync with remote..

Data structure

config:{
  email: "",
  remote: "https://api.yimian.xyz/todo-ddl/"
}


data:{
  td:{[{
    id: 'a2s3s2ds',
    name: '',
    class: 'default',
    createTime: (new Date()).valueOf(),
    todoTime: (new Date()).valueOf(),
    endTime: (new Date()).valueOf(),
    lastOperateTime: (new Date()).valueOf(),
    idDel: false,
    logs: [{
      id: 'fdkr8ei9odleiw93',
      content: '',
      createTime: (new Date()).valueOf()
      lastOperateTime: (new Date()).valueOf(),
      isDel: false
    }]
  }]},
  
  ddl: {[{
    id: 'di8eio',
    name: '',
    class: 'default',
    link: [<tdID>],
    createTime: (new Date()).valueOf(),
    expireTime: (new Date()).valueOf(),
    lastOperateTime: (new Date()).valueOf(),
    isDel: false
  }]}
}