node2 nodemon 이란 무엇인가? nodemon nodemon is a tool that helps develop node.js based applications by automatically restarting the node application when file changes in the directory are detected. nodemon 을 사용해서 node.js 기반으로 만들어진 어플리케이션을 동작할 경우, 파일이 변경될때마다 어플리케이션을 자동으로 재시작을 해준다. https://www.npmjs.com/package/nodemon nodemon Simple monitor script for use during development of a node.js app.. Latest version: 2.0.15, last pu.. 2022. 3. 28. Firebase Functions - FCM Push Message Firebase 서비스 계정 : node.js 에서 FCM Push 를 보내기 위해서 필요한 계정 index.js const functions = require("firebase-functions"); const admin = require("firebase-admin"); const express = require("express"); const cors = require("cors"); const app = express(); app.use(cors({ origin: true })); app.use(require("./routes/sendmessage.routes")); exports.app = functions.https.onRequest(app); /** router 사용하지 않고 index.js.. 2022. 2. 15. 이전 1 다음