Socket
Socket
Sign inDemoInstall

rollup-plugin-static-site

Package Overview
Dependencies
139
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    rollup-plugin-static-site

generate html out of thin air (or with any templating engine) for your static site bundle


Version published
Weekly downloads
40
decreased by-13.04%
Maintainers
1
Install size
9.77 MB
Created
Weekly downloads
 

Readme

Source

rollup-plugin-static-site

generate html out of thin air (or with any templating engine) for your static site bundle

npm version npm downloads

install

yarn add -D rollup-plugin-static-site

usage

// rollup.config.js
import staticSite from 'rollup-plugin-static-site';

export default {
  input: 'src/index.js',
  output: {
    file: 'dest/js/bundle.js',
    format: 'iife',
  },
  plugins: [
    staticSite({ dir: 'dest' }),
  ]
};

running rollup -c with the above config will create static files in dest. the output html will be in dest/index.html and will have a script tag pointing to the rollup bundle.

options

opts Object - plugin options

  • .dir string - path to output directory containing assets and bundle
  • [.css] boolean | string = false - path to css file. typically the value of rollup-plugin-postcss' extract option.
  • [.filename] string = "index.html" - filename of the output html
  • [.moreScripts] Array.<string> | string = [] - additional scripts that should be injected into the output html, useful for loading libraries via a cdn instead the bundle
  • [.moreStyles] Array.<string> | string = [] - like opts.moreScripts, but for css
  • [.suffix] boolean | string = false - adds a suffix to the script and css filename
  • [.template] Object = {} - custom template options
    • .func function - wrapper function used for custom templating engines. has signature (templateStr, templateData) => finalHtml, where templateStr is the contents of the custom template (opts.template.path) and templateData is the result of merging opts.title and opts.template.data with two array properties, scripts and styles. scripts is opts.moreScripts with the path to the bundle opts.dir appended. styles is opts.moreStyles with opts.css appended, if given. this function should call whatever custom templating engine api necessary with the arguments in order to return finalHtml, a string of html that the plugin will save.
    • .path string - path to custom template. if func is not given, the default doT engine will be used. the plugin will inject template strings to handle scripts and styles data if necessary.
    • [.data] Object = {} - template data object. scripts and styles are reserved and will be overwritten if present.
  • [.title] string = "rollup app" - string used for the <title> tag in the output html

test

yarn test # or yarn test:cov

motivation

i recently got back into making web-based creative coding sketches. for me, this means static html with some client-side js. instead of going with the familiar webpack + html-webpack-plugin, i wanted to try something new, so i went ahead and installed rollup. the rollup wiki led me to rollup-plugin-generate-html-template, which works well for very simple projects, but quickly becomes unusable due to inflexibility. i tried some other html-related plugins with no luck, so i wrote one myself 😈.

Keywords

FAQs

Last updated on 14 Apr 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc