0.0.6 • Published 9 years ago

trakker v0.0.6

Weekly downloads
8
License
BSD
Repository
github
Last release
9 years ago

Trakker

Convert tracklists to a list of objects.

Tracklist Assumptions

Your tracklist is generally in the format of:

01. [00:00:10] Some track title and/or Producer

Or

01.) Some track title and/or Producer

Or

Some track title and/or Producer

Trakker only accepts a string input, not a file. Figure that out separately - or check the test for an example.

Installation

npm install trakker

Example of reading a text file

var fs = require('fs'); var trakker = require('trakker');

fs.readFile('tracklist.txt', 'utf8', function (err, data) { var trackList = trakker.generate(data);

console.log(trackList); });

Tests

npm test

0.0.6

9 years ago

0.0.5

11 years ago

0.0.4

11 years ago

0.0.3

12 years ago

0.0.2

12 years ago

0.0.1

12 years ago