Package Exports
- dimsum
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (dimsum) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Dimsum
Dimsum generates lorem ipsum text. You can use it on the client, or in your Node.js projects.

npm install dimsum@0.1Quick start
var dimsum = require('dimsum');
dimsum.generate();
// => 'Impedit ex veniam doloribus possimus quod laudantium...'
dimsum.generate(3);
// => Returns 3 formatted paragraphs of text
dimsum.configure({ format: 'html' });
// => Configure dimsum to return HTML instead of plain textAPI
// Generate paragraphs of text
dimsum.generate([num_paragraphs, options]);
// Configure dimsum for subsequent use
dimsum.configure(options);
// Create unformatted sentences and paragraphs
dimsum.sentence();
dimsum.paragraph();
// Create pre-composed blocks of Lorem Ipsum
dimsum.classic();
dimsum.cicero32();
dimsum.cicero33();TODO
- Support for "flavors" of text (e.g. Jabberwocky, Shakespeare, etc...)
- In-browser unit tests
- Automatic client-side replacement