New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

ibrand

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ibrand

a typescript app-branding interface.

latest
Source
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

##ibrand

an app brand interface that doesn't complain. all properties are optional.

###Usage

.

// app.brand.ts

import { IBrand } from './ibrand';

// there's lots of ways to use this information
export const Brand : IBrand = {
  app: {
    name: 'Boosh! - the app that blows up',
    shortName: 'Boosh!',
    version: '0.0',
    logoUrl: 'assets/img/app/logo.png',
  },
  team: {
    name: 'Team Kapow',
    email: 'hey@kapow.io',
    url: 'https://wwwdotkapowdotcom',
    logoUrl: 'assets/img/team/kapowLogo.png'
  }
};

##The Code

export interface IBrand {
    'app': {
        'name'?: string;        // 
        'shortName'?: string;   // 
        'version'?: string;     // 
        'logoUrl'?: string;     // 
    };
    'team': {
        'name'?: string;        // 
        'email'?: string;       // 
        'url'?: string;         // 
        'logoUrl'?: string;     // 
    };
}

Keywords

metadata

FAQs

Package last updated on 07 Sep 2016

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