UNPKG

nodebasecli

Version:

Cli to create modules for nodebase

23 lines (18 loc) 444 B
const fileData = ` /** * copy these lines to top of index.js */ /** * import { Server } from 'socket.io'; * import { SocketController } from './app/controllers/socket/socketController.js'; */ let io = new Server(server, { cors: { origin: "*" }, transports: ["websocket", "polling"], allowedHeaders: ['authorization'], credentials: false }); global.io = io // SocketController(io); ` module.exports = fileData