1.0.2 • Published 6 years ago

spintext v1.0.2

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

SpinText

A tool for generating text from word chains(optionally nested). Source is a refactored version of the TypeScript project found in this repo.

Install

npm intall spintext --save

Use

var text = "{This is|It's} {Spin|Spin-text|Spin text}. {Enjoy!| You love it!}"
var engine = new SpinText.Engine(text);

console.log('Minimum number of words output will contain ', engine.countMinWords());
console.log('Maximum number of words output will contain ', engine.countMaxWords());
console.log('Possible number of variants output can be ', engine.countVariants());

console.log('Text result', engine.toString());

Try Above example on plnkr

Try

A demo can be found here

Notes

  • 1.0.1 - Initial commit.
  • 1.0.2 - Fix issue with random/seed not beeing set properly.

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago