dev-tools

A tool for web developers

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
dev-tools
0.1.68 years ago8 years agoMinified + gzip package size for dev-tools in KB

Readme

Dev-tools
A javascript utility for comfort development of projects.
Install with npm
npm install dev-tools --save

Use with node.js, browserify or webpack:
var DevTools = require('dev-tools');

DevTools();

Options

gridOptions

Type: object
Values
{
  unitHeight: 0,
  colCountInRow: 12,
  colOuterPadding: 0
}

unitHeight - vertical unit height
colCountInRow - grid columns count in one row
colOuterPadding - columns outer padding

Example

var DevTools = require('dev-tools');

DevTools({
  gridOptions: {
    unitHeight: 50,
    colCountInRow: 12,
    colOuterPadding: 20
  }
});