@@ -17,22 +17,11 @@ Client/Server Side PDF-Generator based in PDFKit
1717<br >
1818
1919- ** ✅ Client/Server Side Support**
20- - ** ✅ Write in Typescript**
21- - ** ✅ Builded with [ ESBuild] ( https://github.com/evanw/esbuild ) and requests with [ OhMyFetch] ( https://github.com/unjs/ohmyfetch ) **
20+ - ** ✅ Write in Typescript and Builded with [ ESBuild] ( https://github.com/evanw/esbuild ) **
2221- ** ✅ Browser STDLib**
2322- ** ✅ Custom Fonts && Purge Unused Fonts**
2423- ** ✅ Plugins Ready!**
2524
26- ## TODO for v1
27-
28- - [x] Bold, italic and underline text content;
29- - [x] line break and page break content;
30- - [ ] Table, list and checkbox content;
31- - [x] [ Nuxt 3 plugin] ( https://github.com/betterwrite/nuxt-pdfeasy ) ;
32- - [ ] Vue 3 plugin;
33- - [ ] 90% coverage;
34- - [ ] ` Client-Side ` and ` Server-Side ` with same features.
35-
3625## Installation
3726
3827``` shell
@@ -140,7 +129,7 @@ pdfeasy.run({
140129``` ts
141130pdfeasy .run ({
142131 type: ' server' ,
143- serverPath: path . resolve ( process . cwd () + ' /examples' ) ,
132+ serverPath: ' /examples' ,
144133}).then (() => {}).catch ((err ) => {
145134 console .error (err )
146135})
@@ -154,7 +143,7 @@ It is possible to define the color scheme used automatically:
154143// converts all hex color to cmyk
155144pdfeasy .run ({ colorSchema: ' CMYK' })
156145
157- // converts all hex color to rgb
146+ // preserve hex colors (it's default)
158147pdfeasy .run ({ colorSchema: ' RBG' })
159148```
160149
@@ -177,11 +166,11 @@ pdfeasy.addFonts([
177166
178167## Resources
179168
180- See [ source demo] ( ./demo ) for more explanations
169+ See [ source demo] ( ./packages/pdfeasy/ demo ) for more explanations
181170
182- See [ examples] ( ./examples/ ) for .pdf results.
171+ See [ examples] ( ./packages/pdfeasy/ examples/ ) for .pdf results.
183172
184- See [ scripts] ( ./scripts/generate/ ) for server-side runner.
173+ See [ scripts] ( ./packages/pdfeasy/ scripts/generate/ ) for server-side runner.
185174
186175## Bundles
187176
0 commit comments