All Projects → hellosign → hellosign-embedded

hellosign / hellosign-embedded

Licence: MIT license
Embed HelloSign signature requests and templates in your web application.

Programming Languages

javascript
184084 projects - #8 most used programming language
SCSS
7915 projects

Projects that are alternatives of or similar to hellosign-embedded

code-examples-csharp
C# code examples and launcher
Stars: ✭ 34 (-17.07%)
Mutual labels:  esignature, esign
SignNowNodeSDK
The Official SignNow Node.js Client Library for interacting with SignNow REST API. Sign documents, request e-signatures, and build role-based workflows with multiple signers using this client.
Stars: ✭ 14 (-65.85%)
Mutual labels:  esignature, esign
docusign-esign-csharp-client
The Official DocuSign C# Client Library used to interact with the eSignature REST API. Send, sign, and approve documents using this client.
Stars: ✭ 112 (+173.17%)
Mutual labels:  esignature, esign
code-examples-node
Node.js code examples and launcher
Stars: ✭ 40 (-2.44%)
Mutual labels:  esignature
code-examples-php
PHP code examples
Stars: ✭ 34 (-17.07%)
Mutual labels:  esignature
docusign-esign-node-client
The Official DocuSign Node.js Client Library used to interact with the eSign REST API. Send, sign, and approve documents using this client.
Stars: ✭ 129 (+214.63%)
Mutual labels:  esignature
node-esigntech
电子签名、电子合同、电子签章、e签宝
Stars: ✭ 44 (+7.32%)
Mutual labels:  esign

HelloSign Embedded

Embed HelloSign signature requests and templates from within your web application.

Npm version Npm downloads Travis David


Usage

The instructions below are for HelloSign Embedded v2. We recommend using it instead of v1 for new projects. Please check the migration guide if you need help upgrading from v1 to v2.

Start by installing the HelloSign Embedded library from npm.

npm install hellosign-embedded

In your frontend app, import hellosign-embedded and instantiate a new client with your API app's client ID.

import HelloSign from 'hellosign-embedded';

// Create the HelloSign Embedded instance.
// Only do this once!
const client = new HelloSign({
  clientId: 'Your client ID'
});

When you're ready to launch HelloSign Embedded, simply call open() on the client with your signature request's signing URL.

function launchHelloSign(url) {
  client.open(url);
}

launchHelloSign(url);

For a more detailed and in-depth walkthrough, check the QuickStart guide on the Wiki. For more information on how to use HelloSign Embedded, visit the API Documentation.

Support

If you have any questions or issues with HelloSign Embedded or our API, please contact [email protected]. This repository is not reguarly monitored for issues.

Resources




© 2019 HelloSign. All rights reserved.

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].