@qigy/run
Version:
A collection of tools capable of executing complex commands through their abbreviation.
26 lines (24 loc) • 639 B
JavaScript
const fs = require('node:fs');
const chalk = require('chalk');
const figlet = require('figlet');
const path = require('node:path');
const Table = require('cli-table3');
const spawn = require('cross-spawn');
const fastifyStatic = require('@fastify/static');
const fastifyMultipart = require('@fastify/multipart');
const fastifyRateLimit = require('@fastify/rate-limit');
const fastifyCors = require('@fastify/cors');
const fastify = require('fastify')({ logger: { level: 'warn' } });
module.exports = {
fs,
path,
Table,
chalk,
spawn,
figlet,
fastify,
fastifyCors,
fastifyStatic,
fastifyMultipart,
fastifyRateLimit
};