1.2.0 • Published 9 years ago

kent-react v1.2.0

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

kent-react

experimental

render react components isomorphically using kent

Usage

NPM

provides this.render(Component, props), this.document, and this.props

router.use(function(next) {
	this.document.title = 'My Site'

	this.document.scripts = [
		'https://cdnjs.cloudflare.com/ajax/libs/es6-promise/3.0.2/es6-promise.min.js',
		'https://cdnjs.cloudflare.com/ajax/libs/react/'+require('react').version+'/react-with-addons.min.js',
		'/dist/client.js'
	]

	this.document.styles = [
		'https://fonts.googleapis.com/css?family=Open+Sans:400,300,700,600',
		'https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.min.css',
		'/styles/core.css'
	]

	this.document.meta = [
		{ name:'viewport', content:'width=device-width, initial-scale=1' }
	]

	next()
})

License

MIT, see LICENSE.md for details.