Backend en NODE.js para generar tablas en HTML y posteriormente con ese DOM crear PDFs, con geaders, contenido de las tablas y headers de tablas en cada pagina, footer de paginacion.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
EJSTempletes/config/dbconfig.js

13 lines
326 B

const config = {
user: 'sa', // sql user
password: 'toor1234', //sql user password
server: 'localhost', // if it does not work try- localhost
database: 'GEMCO',
options: {
// trustedConnection: true,
trustServerCertificate: true,
},
port: 1433
}
module.exports = config;