📅 You're Invited: Meet the Socket team at RSAC (April 28 – May 1).RSVP
Socket
Sign inDemoInstall
Socket

ark-icons

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ark-icons

Ark.com, Inc. icon sets

1.0.8
latest
Source
npm
Version published
Weekly downloads
5
-64.29%
Maintainers
1
Weekly downloads
 
Created
Source

ark-icons

Exposes several methods:

var arkIcons = require('ark-icons');
var express = require('express');
var app = express();

// specify manually
var iconPath = arkIcons.iconPath();
var htmlDeclaration= arkIcons.htmlDeclaration('/images', {
    apple: true,
    wp: true,
    android: true
});
app.locals.iconDeclaration = htmlDeclaration;
app.use('/images', express.static(iconPath));
app.use('/images/manifest.json', arkIcons.AndroidManifest('/images'));
app.use('/images/browserconfig.xml', arkIcons.WindowsPhoneConfig('/images'));

// specify automatically, express must be installed!
// opts - optional, same as the ones in htmlDeclaration
arkIcons.init('/images', app, opts);

Example layout:

<head>
  ...
  {{{ iconDeclaration }}}
  ...
</head>
<body>
  ...
</body>

FAQs

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