Sha256: c78596cffe1d8b09e9f0b5b9c13ab48e75199643973487ab511cc7bccaad9d2a

Contents?: true

Size: 1.22 KB

Versions: 3

Compression:

Stored size: 1.22 KB

Contents

var path = require('path'),
    fs = require('fs'),
    sys = require('util');

var less = require('../lib/less');
var file = path.join(__dirname, 'benchmark.less');

if (process.argv[2]) { file = path.join(process.cwd(), process.argv[2]) }

fs.readFile(file, 'utf8', function (e, data) {
    var tree, css, start, end, total;

    console.log("Benchmarking...\n", path.basename(file) + " (" +
             parseInt(data.length / 1024) + " KB)", "");

    start = new(Date);

    new(less.Parser)({ optimization: 2 }).parse(data, function (err, tree) {
        end = new Date();

        total = end - start;

        console.log("Parsing: " +
                 total + " ms (" +
                 Number(1000 / total * data.length / 1024) + " KB\/s)");

        start = new Date();
        css = tree.toCSS();
        end = new Date();

        console.log("Generation: " + (end - start) + " ms (" +
                 parseInt(1000 / (end - start) *
                 data.length / 1024) + " KB\/s)");

        total += end - start;

        console.log("Total: " + total + "ms (" +
            Number(1000 / total * data.length / 1024) + " KB/s)");

        if (err) {
            less.writeError(err);
            process.exit(3);
        }
    });
});

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
less-2.6.0 lib/less/js/benchmark/less-benchmark.js
less-2.5.1 lib/less/js/benchmark/less-benchmark.js
less-2.5.0 lib/less/js/benchmark/less-benchmark.js