🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

grunt-fontello-react

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-fontello-react

Generates a react component from a Fontello SVG icon

latest
Source
npmnpm
Version
3.0.0
Version published
Maintainers
1
Created
Source

grunt-fontello-react

Generates a react component from a fontello SVG icon. View the demo here.

Getting started

You can either download your font manually into your application or use the CLI to fetch your font on build and then use Grunt with these possible options.

Grunt

module.exports = function(grunt) {
    grunt.loadNpmTasks('grunt-fontello-react');
    grunt.initConfig({
        'fontello-react': {
            target: {
                options: {}
            },
            another-target: {
                options: {}
            }
        }
    });
}

Then run grunt fontello-react:target.

You can see a working Gruntfile.js in this repository. Simply follow these steps to run it.

Options

Paths are relative to the location of your Gruntfile.js.

{
    adapter: 'fontello', // Only adapter available currently
    svgPath: './font/fontello.svg', // Path to SVG
    woffPath: './font/fontello.woff', // Path to WOFF
    eotPath: './font/fontello.eot', // Path to EOT
    ttfPath: './font/fontello.ttf', // Path to TTF
    fontName: 'fontello', // Font name to use in CSS 'font-style'
    jsTplPath: './src/templates/custom-js.tpl', // React component template (to use your own)
    cssTplPath: './src/templates/custom-css.tpl', // CSS template (to use your own)
    jsOutputPath: './dist/components/view.js', // Location of React component output
    cssOutputPath: './dist/components/css.css' // Location of CSS output
}

Usage

In your application simply require the generated component.

var React = require('react'),
    Icon = require('./the/output/component.js');

// CSS may need to be included seperately if using the non CSS module template.

React.render(
    <Icon name="name-of-icon"/>,
    document.getElementById('content')
);

Templates

The templates which are used to generate the output are here. One uses the default CSS you get in the fontello download. The other uses modified CSS to work with Webpacks css-loader. They use underscore.

Development

  • npm install
  • npm install grunt-cli -g
  • grunt
  • npm install webpack -g
  • webpack --config=webpack.default.config.js

Open the dist/index.html.

FAQs

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