All Projects → MyScript → Myscriptjs

MyScript / Myscriptjs

Licence: other
✏️ ☁️ MyScriptJS is the fastest way to integrate rich handwriting recognition features in your webapp.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Myscriptjs

Leapp
Leapp is the tool to access your cloud; It securely stores your access information and generates temporary credential sets to access your cloud ecosystem from your local machine.
Stars: ✭ 306 (-10%)
Mutual labels:  cloud
Docklands
Minimalistic Java EE / Jakarta EE / MicroProfile Related Dockerfiles
Stars: ✭ 315 (-7.35%)
Mutual labels:  cloud
Kube Ingress Aws Controller
Configures AWS Application Load Balancers according to Kubernetes Ingress resources
Stars: ✭ 326 (-4.12%)
Mutual labels:  cloud
Light 4j
A fast, lightweight and more productive microservices framework
Stars: ✭ 3,303 (+871.47%)
Mutual labels:  cloud
Symphytum
Symphytum Personal Database Software
Stars: ✭ 311 (-8.53%)
Mutual labels:  cloud
Aws Sdk Ruby
The official AWS SDK for Ruby.
Stars: ✭ 3,328 (+878.82%)
Mutual labels:  cloud
Cloudbreak
A tool for provisioning and managing Apache Hadoop clusters in the cloud. Cloudbreak, as part of the Hortonworks Data Platform, makes it easy to provision, configure and elastically grow HDP clusters on cloud infrastructure. Cloudbreak can be used to provision Hadoop across cloud infrastructure providers including AWS, Azure, GCP and OpenStack.
Stars: ✭ 301 (-11.47%)
Mutual labels:  cloud
Gasper
Your Cloud in a Binary
Stars: ✭ 331 (-2.65%)
Mutual labels:  cloud
Docker Android
Android in docker solution with noVNC supported and video recording
Stars: ✭ 4,042 (+1088.82%)
Mutual labels:  cloud
Trampoline
Admin Spring Boot Locally
Stars: ✭ 325 (-4.41%)
Mutual labels:  cloud
My Links
Knowledge seeks no man
Stars: ✭ 311 (-8.53%)
Mutual labels:  cloud
Cloudmailru
Total Commander plugin for cloud.mail.ru service
Stars: ✭ 313 (-7.94%)
Mutual labels:  cloud
Fake Gcs Server
Google Cloud Storage emulator & testing library.
Stars: ✭ 316 (-7.06%)
Mutual labels:  cloud
Prowler
Prowler is a security tool to perform AWS security best practices assessments, audits, incident response, continuous monitoring, hardening and forensics readiness. It contains more than 200 controls covering CIS, ISO27001, GDPR, HIPAA, SOC2, ENS and other security frameworks.
Stars: ✭ 4,561 (+1241.47%)
Mutual labels:  cloud
Coherence
Oracle Coherence Community Edition
Stars: ✭ 328 (-3.53%)
Mutual labels:  cloud
Helix
Mirror of Apache Helix
Stars: ✭ 304 (-10.59%)
Mutual labels:  cloud
Adapt
ReactJS for your infrastructure. Create and deploy full-stack apps to any infrastructure using the power of React.
Stars: ✭ 317 (-6.76%)
Mutual labels:  cloud
Beeva Best Practices
Best Practices and Style Guides in BEEVA
Stars: ✭ 335 (-1.47%)
Mutual labels:  cloud
Awsweeper
A tool for cleaning your AWS account
Stars: ✭ 331 (-2.65%)
Mutual labels:  cloud
Home Assistant Custom Components Xiaomi Cloud Map Extractor
This custom integration provides a way to present a live view of a map for a Xiaomi (and Roborock) vacuums.
Stars: ✭ 318 (-6.47%)
Mutual labels:  cloud

MyScriptJS

npm version Examples Documentation

⚠️ This repository is archived ⚠️

iinkJS grants you high integration flexibility by letting you choose your favorite framework or components. For this reason, we have decided to focus on iinkJS and to discontinue our ready-to-use Web components.

For more information, please see documentation.

We also provide an example to integrate iinkJS as webcomponent: link.

🚧

The fastest way to integrate rich handwriting features in your webapp.

MyScriptJS is a JavaScript library that can be used in every web application to bring handwriting recognition.

It integrates all you need:

  • Signal capture for all devices,
  • Digital ink rendering,
  • Link to MyScript Cloud to bring handwriting recognition.

Table of contents

Examples

Discover Interactive Ink with MyScriptJS and its major features with our text demo and tutorial.

Try our two basic examples featuring the text recognition and the math recognition.

All our examples with the source codes in this directory.

We also provide examples of integration with the major JavaScript frameworks:

Framework Link
Example of React integration
Example of Angular integration
Example of Vue integration

Features

  • Text and Math support,
  • Easy to integrate,
  • Digital ink capture and rendering,
  • Rich editing gestures,
  • Import and export content,
  • Styling,
  • Typeset support,
  • More than 200 mathematical symbols supported,
  • 65 supported languages.

You can discover all the features on our Developer website for Text and Math.

Requirements

  1. Have npm, yarn or bower installed.
  2. Have a MyScript developer account. You can create one here.
  3. Get your keys and the free monthly quota to access MyScript Cloud at developer.myscript.com

Installation

MyScriptJS can be installed with the well known package managers npm, yarn and bower.

If you want to use npm or yarn you first have to init a project (or use an existing one).

npm init
OR
yarn init 

You can then install MyScriptJS and use it as showed in the Usage section.

npm install myscript
OR
yarn add myscript

You can also install MyScriptJS using bower (with or without an existing project) and use it as showed in the Usage section replacing node_modules by bower_components.

bower install myscript

Usage

  1. Create an index.html file in the same directory.

  2. Add the following lines in the head section of your file to use MyScriptJS and the css. We use PEP to ensure better browsers compatibilities. Note that you can also use it using dependencies from node_modules or bower_components:

<link rel="stylesheet" href="node_modules/myscript/dist/myscript.min.css"/>
<script src="node_modules/myscript/dist/myscript.min.js"></script>
<script src="https://code.jquery.com/pep/0.4.3/pep.js"></script>
  1. Still in the head section, add a style and specify the height and the width of your editor:
<style>
    #editor {
        width: 100%;
        height: 100%;
    }
</style>
  1. In the body tag, create a div tag that will contain the editing area:
    <div id="editor"></div>
  1. In JavaScript and within a <script> tag placed before the closing tag </body>, create the editor using the register function, your editor html element and a simple configuration:
  const editorElement = document.getElementById('editor');

  MyScript.register(editorElement, {
    recognitionParams: {
      type: 'TEXT',
      server: {
        applicationKey: '#YOUR MYSCRIPT DEVELOPER APPLICATION KEY#',
        hmacKey: '#YOUR MYSCRIPT DEVELOPER HMAC KEY#'
      }
    }
  });
  1. Your index.html file should look like this:
<html>
    <head>
        <link rel="stylesheet" href="node_modules/myscript/dist/myscript.min.css"/>
        <script src="node_modules/myscript/dist/myscript.min.js"></script>
        <script src="https://code.jquery.com/pep/0.4.3/pep.js"></script>
        <style>
            #editor {
                width: 100%;
                height: 100%;
            }
        </style>
    </head>
    <body>
        <div id="editor" touch-action="none"></div>
    <script>
        const editorElement = document.getElementById('editor');

        MyScript.register(editorElement, {
            recognitionParams: {
                type: 'TEXT',
                server: {
                    applicationKey: '#YOUR MYSCRIPT DEVELOPER APPLICATION KEY#',
                    hmacKey: '#YOUR MYSCRIPT DEVELOPER HMAC KEY#'
                }
            }
        });
    </script>
    </body>
</html>
  1. Open index.html in your browser or serve your folder content using any web server.

You can find this guide and a more complete example on the MyScript Developer website.

Documentation

You can find a complete documentation with the following sections on our Developer website:

As well as a global Configuration page.

We also provide a complete API Reference.

Development

Instructions to help you build the project and develop are available in the SETUP.md file.

Getting support

You can get support and ask your questions on the dedicated section of MyScript Developer website.

Sharing your feedback ?

Made a cool app with MyScriptJS? We would love to hear about you! We’re planning to showcase apps using it so let us know by sending a quick mail to [email protected].

Contributing

We welcome your contributions: if you would like to extend MyScriptJS for your needs, feel free to fork it!

Please take a look at our contributing guidelines before submitting your pull request.

License

This library is licensed under the Apache 2.0.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].