Socket
Book a DemoInstallSign in
Socket

vueify-insert-css

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vueify-insert-css

insert a string of css into the <head>

latest
Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
1.2K
163.08%
Maintainers
1
Weekly downloads
 
Created
Source

insert-css

insert a string of css into the <head>

browser support

example

suppose we've got some css:

body {
    background-color: purple;
    color: yellow;
}

and we want to bundle that css into a js file so that we can write an entirely self-contained module:

var fs = require('fs');
var insertCss = require('insert-css');
var css = fs.readFileSync(__dirname + '/style.css');
insertCss(css);
document.body.appendChild(document.createTextNode('HELLO CRUEL WORLD'));

optionally prepend the css to the head with the prepend option:

insertCss(css, { prepend: true });

compile with browserify using brfs to inline the fs.readFile() call:

$ browserify -t brfs insert.js > bundle.js

Now plop that bundle.js into a script tag and you'll have a self-contained js blob with inline css!

<html>
  <head></head>
  <body>
    <script src="bundle.js"></script>
  </body>
</html>

Keywords

css

FAQs

Package last updated on 23 Oct 2015

Did you know?

Socket

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