How to use the favicons.stream function in favicons

To help you get started, we’ve selected a few favicons examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github onedevstudio / starter-kit / gulpfile.js View on Github external
task('favicons', () =>
  src(`${config.src.images}/icon.png`)
    .pipe(favicons(config.favicons)).on('error', $.util.log)
    .pipe($.size(config.size('favicons')))
    .pipe(dest(`${config.dest.dist}${config.favicons.path}`)))
github tlambert03 / FPbase / gulpfile.js View on Github external
gulp.task("favicon", function() {
  return gulp
    .src(paths.images + "/favicon.png")
    .pipe(
      favicons({
        appName: "FPbase",
        appDescription: "The Fluorescent Protein Database",
        developerName: "Talley Lambert",
        developerURL: "http://talleylambert.com/",
        background: "#17941e",
        path: "/",
        url: "http://fpbase.org/",
        display: "standalone",
        orientation: "portrait",
        start_url: "/",
        version: 1.0,
        logging: false,
        html: "index.html",
        pipeHTML: true,
        replace: true
      })

favicons

Favicon generator for Node.js

MIT
Latest version published 1 month ago

Package Health Score

81 / 100
Full package analysis

Popular favicons functions