HansHammel / todo-list

Find TODOs, NOTEs, and FIXMEs in your project. Sort by assignee and file.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Todo-List Build Status

Todo-list starts a server to find TODOs, FIXMEs, and NOTEs, presenting them in an interface that lets you sort by assignee and file. The server will also show code snippets.

NPM NPM

npm version npm license npm download npm download Package Quality Inline docs star this repo fork this repo

david dependency david devDependency david optionalDependency david peerDependency npms score Known Vulnerabilities

Imgur

Using as an Application

Todo-list can be installed and used as an application.

npm install -g todo-list

Then navigate to your code directory, and run the following command.

todo-list

You should be able to navigate your browser to http://localhost:3000/ and see the results.

Using as a Library

var todolist = require("todo-list");
todolist.findMarks("// TODO(bob): This is a TODO assigned to bob.");
/*[{
	content: 'TODO(bob): This is a TODO assigned to bob.',
	line: 0,
	assignee: 'bob',
	type: 'TODOs'
}]*/

About

Find TODOs, NOTEs, and FIXMEs in your project. Sort by assignee and file.

License:MIT License


Languages

Language:JavaScript 55.4%Language:HTML 44.6%