Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/niedsonemanoel/lib-geradora-de-certificado-pdf
Biblioteca simples feita com o ejs com o instuito de gerar certificados em pdf.
https://github.com/niedsonemanoel/lib-geradora-de-certificado-pdf
certificates ejs events pdfs
Last synced: about 1 month ago
JSON representation
Biblioteca simples feita com o ejs com o instuito de gerar certificados em pdf.
- Host: GitHub
- URL: https://github.com/niedsonemanoel/lib-geradora-de-certificado-pdf
- Owner: NiedsonEmanoel
- License: mit
- Created: 2021-06-09T02:58:18.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-06-09T09:50:52.000Z (over 3 years ago)
- Last Synced: 2024-12-01T08:10:22.116Z (about 1 month ago)
- Topics: certificates, ejs, events, pdfs
- Language: EJS
- Homepage:
- Size: 2.05 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Geradora de Certificados em PDF
Biblioteca simples feita com o ejs com o instuito de gerar certificados em pdf.## Para instalar:
```
npm i lib-geradora-de-certificado-pdf
```## O código abaixo gera o seguinte certificado:
```
const certGenerator = require('lib-geradora-de-certificado-pdf');
const path = require('path');(async () => {
let dirCert = await certGenerator(
'CERTIFICADO',
'Confiro o presente certificado a',
'Niedson Emanoel',
'Por ter participado da criação da biblioteca',
'Geradora de Certificados em PDF.',
'As sugestões da comunidade são muito bem-vindas e sintam-se a vontade.',
'Niedson Emanoel',
'Programador Jr.',
path.join(__dirname, 'cert.pdf')
)console.log('Diretório:', dirCert)
})()
```