-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
65 changed files
with
2,666 additions
and
713 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
{ | ||
"excludeFiles": [".git", ".vscode", "node_modules", "lib"], | ||
"lang": "en", | ||
"fileExtensions": [".md"], | ||
// "fileExtensions": [".md", ".ts"], | ||
"dictionary": [ | ||
"(G|g)otenberg", | ||
"(J|T)S", | ||
"TypeScript", | ||
"(M|m)arkdown", | ||
"Node(js|JS)", | ||
"TODO", | ||
|
||
"toBe", | ||
"toThrow", | ||
"enum", | ||
"typeof", | ||
"instanceof", | ||
"startsWith", | ||
"int", | ||
"pdf", | ||
"clnt", | ||
"noop", | ||
"src", | ||
"uri", | ||
"fn", | ||
"fs", | ||
"fns", | ||
"param", | ||
"req", | ||
"tslint", | ||
"fileNameRE", | ||
"statusCode", | ||
"statusMessage", | ||
"basename", | ||
"extname", | ||
"webhook", | ||
"formdata", | ||
"iterables", | ||
"getHeaders", | ||
"isArray", | ||
"isBuffer", | ||
"isFileName", | ||
"isFileUri", | ||
"isIterable", | ||
"isObject", | ||
"isPlain", | ||
"isStream", | ||
"isString", | ||
"isTuple", | ||
"isURL", | ||
"toStream", | ||
"toStreams", | ||
"toEqual", | ||
"toTuples", | ||
"fromFile", | ||
"createReadStream", | ||
|
||
"waitTimeout", | ||
"webhookURL", | ||
"webhookURLTimeout", | ||
"resultFilename", | ||
"waitDelay", | ||
"googleChromeRpccBufferSize", | ||
"paper(Width|Height)", | ||
"margin(Top|Bottom|Left|Right)", | ||
"landscape", | ||
"remoteURL", | ||
"paperSize", | ||
"marginSizes", | ||
"noMargins", | ||
"normalMargins", | ||
"largeMargins", | ||
|
||
"(a|A|T|f|z|Z)[0-9a]", | ||
|
||
"FormData", | ||
"(I|i)terable", | ||
"ReadableStream", | ||
"ReadStream", | ||
"GotenbergClient", | ||
"GotenbergClient(Class|Function)", | ||
"RequestType", | ||
"FileURI", | ||
"RequestFields", | ||
"(Common|Chrome|Html|Markdown|Office|Url|Merge)RequestFields", | ||
"FieldsModifier", | ||
"(Paper|Margin|Conversion)Options", | ||
"Source", | ||
"PlainSources", | ||
"(Plain|Tuple|Object|TupleStreams)Source", | ||
"Request", | ||
"RequestEx", | ||
"(Url|Ping|Html|Merge|Office|Markdown|Typed)Request" | ||
], | ||
"ignoreText": [], | ||
"ignoreUrls": true, | ||
"ignoreUppercase": true, | ||
"findRepeatWords": false, | ||
"maxRequests": 5 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,214 @@ | ||
# Gotenberg JS/TS client | ||
|
||
A simple JS/TS client for interacting with a Gotenberg API. | ||
A simple JS/TS client for interacting with a [Gotenberg](https://thecodingmachine.github.io/gotenberg/) API. | ||
|
||
## Install | ||
|
||
```bash | ||
$ yarn add gotenberg-js-client | ||
``` | ||
|
||
Or using `npm` | ||
|
||
```bash | ||
$ npm install --save gotenberg-js-client | ||
``` | ||
|
||
## Usage | ||
|
||
```typescript | ||
import { pipe, gotenberg, convert, html, please } from 'gotenberg-js-client' | ||
|
||
const toPDF = pipe( | ||
gotenberg('http://localhost:3000'), | ||
convert, | ||
html, | ||
please | ||
) | ||
|
||
// --- 8< --- | ||
|
||
// convert file from disk | ||
const pdf = await toPDF('file://index.html') | ||
|
||
// or convert stream | ||
const pdf = await toPDF(fs.createReadStream('index.html')) | ||
|
||
// or convert string! | ||
const pdf = await toPDF('<html>...</html>') | ||
|
||
// library returns NodeJS.ReadableStream, | ||
// so you can save it to file, if you want, for example | ||
pdf.pipe(fs.createWriteStream('index.pdf')) | ||
|
||
// or you can send it as response in Express application | ||
app.get('/pdf', function(req, res) { | ||
//... | ||
pdf.pipe(res) | ||
}) | ||
``` | ||
|
||
## Header, footer and assets | ||
|
||
You can define sources as array or object, for example: | ||
|
||
```typescript | ||
// `toPDF` function is defined above ↑↑↑ | ||
|
||
// as object | ||
const pdf = await toPDF({ | ||
'index.html': 'file://index.html', | ||
'header.html': 'file://header.html', | ||
'footer.html': 'file://footer.html', | ||
'style.css': 'file://style.css', | ||
'img.png': 'file://img.png', | ||
'font.wof': 'file://font.wof', | ||
}) | ||
|
||
// as array of tuples | ||
const pdf = await toPDF([ | ||
['index.html', 'file://index.html'], | ||
['header.html', 'file://header.html'], | ||
['footer.html', 'file://footer.html'], | ||
]) | ||
|
||
// as even 1-dimensional array of files | ||
// in that case filenames will be retrieved from file path | ||
const pdf = await toPDF([ | ||
'file://index.html', | ||
'file://header.html', | ||
'file://footer.html', | ||
]) | ||
``` | ||
|
||
Instead of array you can use any [iterable](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols), like `Map`, `Set`, `arguments`, generator function, or any object with `[Symbol.iterator]` defined. | ||
|
||
## Paper size, margins, orientation | ||
|
||
When converting HTML or Markdown, you can use `to` helper, to set paper size, margins and orientation: | ||
|
||
```typescript | ||
import { | ||
pipe, | ||
gotenberg, | ||
convert, | ||
html, | ||
please, | ||
to, | ||
a4, | ||
landscape, | ||
} from 'gotenberg-js-client' | ||
|
||
const toPDF = pipe( | ||
gotenberg('http://localhost:3000'), | ||
convert, | ||
html, | ||
to(a4, landscape), | ||
please | ||
) | ||
``` | ||
|
||
You can use simple object(s) for `to` argument(s) as well: | ||
|
||
```typescript | ||
//... | ||
to({ | ||
paperWidth: 8.27, | ||
paperHeight: 11.69, | ||
marginTop: 0, | ||
marginBottom: 0, | ||
marginLeft: 0, | ||
marginRight: 0, | ||
landscape: true, | ||
}) | ||
//... | ||
|
||
// or | ||
to([8.27, 11.69], [0, 0, 0, 0], { landscape: true }) | ||
//... | ||
|
||
// or | ||
to({ paper: [8.27, 11.69], margins: [0, 0, 0, 0], landscape: true }) | ||
//... | ||
|
||
// or | ||
to({ width: 8.27, height: 11.69 }, { landscape: true }) | ||
//... | ||
|
||
// or | ||
to({ top: 0, bottom: 0 }) | ||
//... | ||
|
||
// or any other combination | ||
``` | ||
|
||
When using array for paper size, order should be `[width, height]`<br> | ||
When using array for margins, order should be `[top, right, bottom, left]` (just like in CSS) | ||
|
||
## Common options | ||
|
||
You can set common options, like [resultFilename](https://thecodingmachine.github.io/gotenberg/#result_filename), or [waitTimeout](https://thecodingmachine.github.io/gotenberg/#timeout), or, actually, you can override _any_ option, using `set` helper: | ||
|
||
```typescript | ||
//... | ||
set({ | ||
resultFilename: 'foo.pdf', | ||
waitTimeout: 2.5, | ||
}) | ||
//... | ||
``` | ||
|
||
There are some _modifiers_ functions as well, like `filename`, `timeout`, `delay`, `webhook` and `googleChromeRpccBufferSize`: | ||
|
||
```typescript | ||
//... | ||
set({ | ||
filename('foo.pdf'), | ||
timeout(2.5), | ||
}) | ||
//... | ||
``` | ||
|
||
## Merge | ||
|
||
Like you would think: | ||
|
||
```typescript | ||
import { pipe, gotenberg, merge, please } from 'gotenberg-js-client' | ||
|
||
const toMergedPDF = pipe( | ||
gotenberg('http://localhost:3000'), | ||
merge, | ||
please | ||
) | ||
``` | ||
|
||
## Bonus | ||
|
||
If you happen to use this package from JavaScript, you will, obviously, lost type safety, but in return, you can use proposed pipe operator (with [Babel plugin](https://github.com/tc39/proposal-pipeline-operator)), to get beauty like this: | ||
|
||
```javascript | ||
const toPDF = source => | ||
source | ||
|> gotenberg(GOTENBERG_API) | ||
|> convert | ||
|> html | ||
|> to(a4, noMargins) | ||
|> set(filename('out.pdf')) | ||
|> please | ||
``` | ||
|
||
## Names clashes | ||
|
||
If you don't like to have simple imported names in your namespace, you can use `import *` syntax: | ||
|
||
```typescript | ||
import * as ಠ from 'gotenberg-js-client' | ||
|
||
const toPDF = ಠ.pipe( | ||
ಠ.gotenberg('http://localhost:3000'), | ||
ಠ.convert, | ||
ಠ.html, | ||
ಠ.please | ||
) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.