npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

mobisplash

v0.2.2

Published

Mobile app splash screen generator

Downloads

27

Readme

mobisplash Build Status

Mobile app splash screen generator

Install

$ npm install --save mobisplash

GraphicsMagick

This library depends on GraphicsMagick, so be sure to install this library as well.

Mac OSX

$ brew install graphicsmagick

Linux

$ sudo apt-get install graphicsmagick

Windows

Manual installation or via chocolatey.

$ choco install graphicsmagick

Usage

const mobisplash = require('mobisplash');

mobisplash('logo.png', {platform: 'ios'}).then(() => {
    // splash screens generated
});

mobisplash('logo.svg', {platform: 'android', draw9patch: false}).then(() => {
    // splash screens generated
});

API

mobisplash(file, options)

file

Type: string

Source file of the splash screen.

options

platform

Required Type: string Values: android ios blackberry10

Platform to generate the splash screens for.

orientation

Type: string Values: both portrait landscape Default: both

Orientation to generate the splash screens for.

background

Type: string Default: white

Color of the splash screen background.

contentRatio

Type: number Default: 0.8

Logo-splash screen ratio. 1 means the logo will fill up the entire width (or height) of the splash screen.

draw9patch

Type: boolean Default: true

9-patch the Android splash screens.

dest

Type: string Default: process.cwd()

Directory to save the generated splash screens to.

Platforms

The supported platforms are Android, iOS and BlackBerry 10. Every platform generates a different set of icons.

Android

  • drawable-ldpi-land/splash.png
  • drawable-mdpi-land/splash.png
  • drawable-hdpi-land/splash.png
  • drawable-xhdpi-land/splash.png
  • drawable-xxhdpi-land/splash.png
  • drawable-xxxhdpi-land/splash.png
  • drawable-ldpi-port/splash.png
  • drawable-mdpi-port/splash.png
  • drawable-hdpi-port/splash.png
  • drawable-xhdpi-port/splash.png
  • drawable-xxhdpi-port/splash.png
  • drawable-xxxhdpi-port/splash.png

iOS

  • Default-667h.png
  • Default-736h.png
  • Default-Landscape-736h.png
  • Default-568h@2x~iphone.png
  • Default~iphone.png
  • Default@2x~iphone.png
  • Default-Landscape~ipad.png
  • Default-Landscape@2x~ipad.png
  • Default-Portrait~ipad.png
  • Default-Portrait@2x~ipad.png

BlackBerry 10

  • splash-1280x720.png
  • splash-720x1280.png
  • splash-1280x768.png
  • splash-768x1280.png
  • splash-720x720.png
  • splash-1440x1440.png

Related

License

MIT © Sam Verschueren