jsdocx

0.4.5 • Public • Published

jsdocx

jsdocx

Generate .docx files from JS

Node.js CI

Demo

https://zuck.github.io/jsdocx

Install

Node

$ npm install jsdocx

Browser

<script src="https://unpkg.com/jsdocx"></script>

Build

$ git clone https://github.com/zuck/jsdocx.git
$ cd jsdocx
$ npm install
$ npm run build

Test

$ npm test

How to use

import * as jsdocx from 'jsdocx'

// ES5: var jsdocx = require('jsdocx')

let doc = new jsdocx.Document()
let p = doc.addParagraph()
p.addRun().addText('Hello World!')
p.addFormat().addHAlignment().setVal('center')
doc.generate().then((content) => {
  // e.g. saveAs(content, 'hello.docx')
})

Reference

License

The MIT License (MIT)

Copyright (c) Emanuele Bertoldi

Readme

Keywords

Package Sidebar

Install

npm i jsdocx

Weekly Downloads

35

Version

0.4.5

License

MIT

Unpacked Size

535 kB

Total Files

61

Last publish

Collaborators

  • zuck