Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

appmanifest

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

appmanifest

Validate web app manifest (http://w3c.github.io/manifest)

  • 0.0.6
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
3
increased by50%
Maintainers
1
Weekly downloads
 
Created
Source

appmanifest

Validate web app manifest (http://w3c.github.io/manifest)

* Tries to follow the Spec as it is (as much as possible)

Try it online -

https://boopathi.in/appmanifest/

This project is still under active development. Ideas and contributions welcome :)

Install

npm install appmanifest

Usage

API

// result is the processed manifest object
var result = manifestParser({
  manifest: "<manifest json string>",
  manifestUrl: "https://example.com/manifest.json", // this is required to validate some urls
  documentUrl: "https://example.com/" // this is also required to validate some urls
  logger: function() { return { warn() {}, error(){}, log(){} } } // optional
});

If you don't want to pass manifestUrl and documentUrl, just use example.com urls as mentioned above.

Capture errors and warnings

You can pass your custom logger and capture all errors and warnings to compile and display later. The signature of the logger function is this.

function Logger (name /* name of the param currently validated */) {
  return {
    warn(message) {
      // do your stuff
    },
    error (message) {
      // do your stuff
    },
    log (message) {
      // do your stuff
    }
  }
}

Node

const parse = require('appmanifest').manifestParser;

Browser

  1. You can bundle this with webpack / browserify
  2. Generate your dist - npm run dist
  3. Get it from CDN - https://npmcdn.com/appmanifest@latest/dist/manifest-parser.min.js

The library when obtained as a built bundle, exports UMD with ManifestParser as the name.

Note:

If you're using the cdn URL, you need to use ManifestParser.default({});

Features

Processing

Spec: http://w3c.github.io/manifest/#processing

This helps in identifying possible mistakes in your manifest.json file in the following fields.

  • start_url
  • display
  • orientation
  • name
  • lang
  • short_name
  • icons
  • splash_screens
  • scope
  • related_applications
  • prefer_related_applications
  • theme_color
  • background_color

* The unchecked ones are not yet implemented

Installability Signals

Spec: http://w3c.github.io/manifest/#installability-signals

This tool is to identify from a URL, warnings about some of your app installability signals - to make it more installable - Does it even mean anything? Yes. It's a thing now. Live with it.

  • link associativity with manifest & contains at least name and a suitable icon
  • Served over HTTPS
  • CSP

* The unchecked ones are not yet implemented

Note: There are a few others that cannot be checked with this tool. Feel free to visit the link mentioned above to help making your manifests better and give the browser possible installability signals.

CONTRIBUTING

Contributions and ideas are always welcome. Create an issue to discuss.

Build

License

MIT License - http://boopathi.mit-license.org/

FAQs

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc