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

global-input-message

Package Overview
Dependencies
Maintainers
1
Versions
213
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

global-input-message

global input core js library

  • 1.8.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-80%
Maintainers
1
Weekly downloads
 
Created
Source

global-input-message

This is a JavaScript library for web and device applications to have mobile integration without developing a separate mobile app. If you already have a mobile app, you need to include the Global Input App component. Then, this library allows your applications running on various devices to interoperate with user's mobile devices.

The simple addition allows your applications instantly have Mobile Encryption , Mobile Authentication , Mobile Content Transfer , Mobile Input & Control , Second Screen Experience and Mobile Personal Storage features

ReactJS or React Native Applications

If you have React applications, you can include the React extension library, which is much more intuitive to use.

Setup

npm module

npm install --save global-input-message

CDN

<script src="https://unpkg.com/global-input-message@1.7.7/distribution/globalinputmessage.min.js">
</script>

Usage

Import and create a connector object:

import {createMessageConnector} from "global-input-message";
const connector=createMessageConnector();

or use require:

const globalInputMessage=require("global-input-message");
const connector=globalInputMessage.createMessageConnector();

Now you pass you can pass the configuration to the connector via connect() function. The configuration contains a list of mobile user interface elements and the callback functions when the connected user interacted with them.

For example following configuration specify a form containing a single field named Content:

 const mobileConfig={        
   initData:{                              
     form:{
        title:"Content Transfer",   
        fields:[{
          label:"Content",            
          operation:{onInput:setContent}             
         }]
       }
     },
     ...
 };
 connector.connect(mobileConfig);           

The following configuration specifies a login form:

 const mobileConfig={        
   initData:{                              
     form:{
        title:"Sign In",
        id:"###username###@myCompany.com",
        fields:[{
           label:"Username",
           id:"username",
           operations:{
            onInput:setUsername
           }
       },{
          label:"Password",            
          id:"password",
          operations:{
            onInput:setPassword
          }
       },{
         label:"Sign In",
         type:"button",            
         operations:{
            onInput:signIn
          }
       }]
     }
   },
   ...
 };
    connector.connect(mobileConfig);           

You can try out the sample code above on JSFiddler

Keywords

FAQs

Package last updated on 19 Jul 2020

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