New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

jss-vendor-prefixer

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jss-vendor-prefixer

Vendor prefixer for jss

  • 0.1.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
116K
decreased by-17.56%
Maintainers
1
Weekly downloads
 
Created
Source

Vendor prefixer plugin for JSS

This vendor prefixer knows which properties are supported in the current runtime and adds only whats required. The best thing is - you don't need to download all of them. Also it is very fast, all checks are cached. See example.

{
    '.container': {
        transform: 'translateX(100px)'
    }
}
.container {
    transform: -webkit-translateX(100px);
}

Register plugin

var jss = require('jss')
var vendorPrefixer = require('jss-vendor-prefixer')
jss.use(vendorPrefixer)

Run tests

Locally

npm i
open test/local.html

From github

Tests

License

MIT

Keywords

FAQs

Package last updated on 31 Jan 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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc