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

fela-preset-web

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fela-preset-web

Fela plugin preset for web applications

12.2.1
latest
Version published
Weekly downloads
6.1K
7.52%
Maintainers
2
Weekly downloads
 
Created

fela-preset-web

npm version npm downloads Bundlephobia

A Fela plugin preset for web applications.
It contains everything you need to start building cross-browser compatible apps.

Contains (exact order)

Installation

yarn add fela-preset-web

You may alternatively use npm i --save fela-preset-web.

Usage

Simply use the spread operator to add the preset.

import { createRenderer } from 'fela'
import webPreset from 'fela-preset-web'

const renderer = createRenderer({
  plugins: [
    ...webPreset,
    // other plugins
  ]
})
Configuration

Some plugins also accept some configuration options. We can use the createWebPreset factory and pass the options using the plugin name as a key.

import { createRenderer } from 'fela'
import { createWebPreset } from 'fela-preset-web'

const renderer = createRenderer({
  plugins: [
    ...createWebPreset({
      'unit': [
        'em',
        {
          margin: '%'
        }
      ]
    })
  ]
})

License

Fela is licensed under the MIT License.
Documentation is licensed under Creative Commons License.
Created with ♥ by @robinweser and all the great contributors.

FAQs

Package last updated on 16 Nov 2022

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