🚀 TestDrive-JSUI Minified Build
v1.0.0
107KB Minified
Production Ready
Testing: Minified production build dist/testdrive-jsui.min.js
Size Reduction: 217KB → 107KB (50% smaller!)
Performance: Optimized for production use
\`\`\`
### Via npm
\`\`\`bash
npm install testdrive-jsui marked
\`\`\`
### Browser Usage
\`\`\`javascript
const editor = new TestDriveJSUI({
container: '#my-editor',
markdown: '# My Document',
mode: 'edit'
});
\`\`\`
## Try It Out
Click any section above to start editing. The minified build performs identically to the development build, but loads faster and uses less bandwidth.
---
**Ready for production deployment! 🚀**`,
mode: 'edit',
autosave: false,
controls: {
editControl: true,
statusControl: true,
contentsControl: true
}
});
editor.on('initialized', () => {
console.log('✅ Minified bundle initialized successfully!');
console.log('📊 Performance optimized and ready for production');
});