jsreport-static-resources
v0.2.2
Published
jsreport extension allowing to reference static scripts from an external directory
Downloads
7
Readme
jsreport extension serving static scripts and styles like jquery or bootstrap from the pre-configured directory.
npm install jsreport-static-resources
Copy the scripts, styles or other static resources to the jsreport data directory data\staticResources
Reference resources inside the template content using $staticResources
property provided to the templating engine.
<html>
<head>
<link rel="stylesheet" type="text/css" href="{{$staticResources}}/style.css">
</head>
...
Optionally override the path to the static resources directory inside the jsreport configuration
{
...
'static-resources': {
'directory': 'c:\build'
}
...
}
##jsreport-core You can apply this extension also manually to jsreport-core
var jsreport = require('jsreport-core')()
jsreport.use(require('jsreport-static-resources')())