typekit

A Node.js binding for the Typekit API.

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
typekit
0.1.110 years ago10 years agoMinified + gzip package size for typekit in KB

Readme

Usage

````javascript var kit = require('typekit');
kit.create(token, { name: 'Example', families: {id: 'gkmg'}, domains: 'localhost' }, function (err, data) { kit.update(token, data.id, {
families: ['gkmg', 'gkda']
}, function (err) {
kit.publish(token, data.id, function (err) {
  console.log('All done!');
});
}); }); ````