The act of converting content from its original format into a format capable of being displayed on the web
Manage Multiple WordPress Sites

Library

Library Category

Automatic Filler Content — Fixie.js

Fixie.js is a one-gear library for automatically adding filler content to HTML documents.

fixie Automatic Filler Content    Fixie.js

Fixie can fix you up with several types of content:

  • Headers;
  • Images (displays image height and width, too);
  • Links;
  • etc.

A library like this would be worth using only if it was quick to implement; fortunately, such is the case with Fixie, which impeccably solves the daunting task of adding content to fresh websites.

Terminal Application Helper — Drink Coffee

Drink Coffee is a terminal application helper that runs on Node.

drinkcoffee Terminal Application Helper    Drink Coffee

Drink Coffee has an interesting API that features methods like sip, gulp, stir, etc., which is quite confusing, but also somewhat funny.

Drink Coffee can potentially keep any terminal session alive, so it’s useful for creating an IRC client, and, as the author implies, it’s also convenient for storing data acquired from real-time sources such as Twitter.

Time Series Visualization — Cubism.js

Cubism.js is a D3 plugin for visualizing time series.

cubismjs Time Series Visualization    Cubism.js

Cubism fetches time series incrementally, and reduces server load by fetching only the recent values.

Cubism is great for improving a dashboard. The library currently supports Graphite and Cube data sources, but it’s flexible and allows adding other data sources.

Limit JavaScript Events And Calls — limit.js

limit.js is a library for limiting JavaScript events and calls.

limitjs Limit JavaScript Events And Calls    limit.js

limit.js features two methods: debouncing and throttling.

Debouncing executes an event after a specific amount of time has elapsed (for stress tests, I suppose), and throttling limits executing a function only once in a set amount of time–good for reducing load off the user.

Syntactic Transformation Of JavaScript — Krasota.js

Krasota.js (from Russian ‘???????’ —  ’beauty’) is a library for beautifying JavaScript code.

krasotajs Syntactic Transformation Of JavaScript    Krasota.js

Beauty will save the world, that’s for sure, especially as the library forces semicolons; it can also remove excess whitespaces, etc.

Krasota.js can be run from the command line, and through require(‘krasota’) in terms of raw OmetaJS grammar.

JavaScript Client-side Caching – locache.js

locache.js is a framework for caching objects on the client-side.

locache JavaScript Client side Caching   locache.js

locache is just 4kb minified, but still delivers in terms of features:

  • Cache any JSON object for re-use or offline use;
  • Store objects for a set time;
  • Clearing the cache;
  • etc.

locache is a great supplement for data-intensive applications that need code re-using or capability for offline use.