Socket
Socket
Sign inDemoInstall

micro-app

Package Overview
Dependencies
0
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    micro-app

(<5kb) [📱iOS] Create Progressive Web App Dynamically.


Version published
Weekly downloads
32
increased by255.56%
Maintainers
1
Install size
970 kB
Created
Weekly downloads
 

Changelog

Source

1.0.2

  • Fixed a bug in ios 8.1.1.

Readme

Source

npm npm npm Travis CI

micro-app

(<5kb) [📱iOS] Create Progressive Web App Dynamically.

Try it now

Getting started

$ npm install micro-app

Demo

$ npm cd node_modules/micro-app/
$ npm install
$ npm run demo

How to use

1. Declare feature on the script tag which has an attribute "micro-app".
<script micro-app src="micro-app.min.js" capable></script>
2. Select the script tag which has an attribute "micro-app" then set feature by "setAttribute".
<script micro-app src="micro-app.min.js"></script>
<script>
    document.querySelector('script[micro-app]').setAttribute('capable', true);
</script>
3. Assign feature on the global namespace "microApp".
<script src="micro-app.min.js"></script>
<script>
    microApp.capable = true;
</script>

Features

  • If you assign a null, that means remove the feature.
capable
  • microApp.capable = true;
<meta name="apple-mobile-web-app-capable" content="yes">
status-bar-style
  • microApp.statusBarStyle = 'black-translucent';
  • Both microApp["status-bar-style"] and microApp.statusBarStyle are same.
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
title
  • microApp.title = 'title';
<meta name="apple-mobile-web-app-title" content="title">
icon
  • microApp.icon = 'icon.jpg';
  • Support multiple.
<link rel="apple-touch-icon" href="icon.jpg">
splash
  • microApp.icon = 'splash.jpg';
  • Support multiple.
<link rel="apple-touch-startup-image" href="splash.jpg">

Multiple

Use Array and Object to set multiple icon and splash. @see /demo/jquery/entry/index.js

Methods

filter( name: String, handler: Funtion )
  • Define a filter, filter the url about icon and splash.
ArgumentDescription
Stringfilter name
Functionfilter handler
Return values
microApp

Filters

#precomposed
  • Set the attribute rel="apple-touch-icon-precomposed".
#autosize
  • Set sizes or media after computed.

License

MIT

Keywords

FAQs

Last updated on 07 Dec 2016

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc