Exciting release!Introducing "safe npm". Learn more
Socket
Log inDemoInstall

ooxml-signature-pages

Package Overview
Dependencies
4
Maintainers
1
Versions
32
Issues
File Explorer

Advanced tools

ooxml-signature-pages

Generate OOXML markup for signature pages

    3.2.0latest
    GitHub

Version published
Maintainers
1
Weekly downloads
784
increased by46%

Weekly downloads

Readme

Source

ooxml-signature-pages

Given an Array of signature page objects satisfying signature-page-schema, return a string of Office Open XML (Microsoft Word .docx) markup.

var assert = require('assert') var signaturePages = require('ooxml-signature-pages')

Blank Pages

var blankPages = signaturePages([ { header: ( 'The parties are signing this agreement ' + 'on the dates by their signatures.' ), entities: [ { name: 'SomeCo, Inc.', form: 'corporation', jurisdiction: 'Delaware', by: 'Chief Executive Officer' } ], information: ['date'] }, { samePage: true, information: ['date'] } ]) assert(typeof blankPages === 'string')

Pre-Filled Pages

var preFilled = signaturePages([ { entities: [ { name: 'SomeCo, Inc.', form: 'corporation', jurisdiction: 'Delaware', by: 'Chief Executive Officer' } ], name: 'Jane Manager', information: { date: 'January 1, 2019', email: 'jane@someco.com', 'with copies to': 'legal@someco.com' } }, { samePage: true, name: 'John Doe', information: { date: 'January 2, 2019' } } ]) assert(typeof preFilled === 'string') assert(preFilled.includes('With Copies To'))

FAQs

Last updated on 28 Mar 2023

Did you know?

Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.

Install Socket
Socket
support@socket.devSocket SOC 2 Logo

Product

  • Package Issues
  • 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