node push 보내기1 Node.js로 간단한 Push 만들기 위와 같이 mac이나 윈도우에 푸쉬 알람오는 것을 간단하게 node.js로 만들어보겠습니다. 1. 터미널에서 push_notification이라는 폴더를 생성합니다. mkdir push_notification 2. npm init -y로 package.json을 생성해주시고 다음 패키지들을 설치해주세요. npm i web-push express body-parser 3. 설치되셨다면 index.js파일을 만들어서 다음과 같이 작성해보세요. const express = require("express"); const webpush = require("web-push"); const bodyParser = require("body-parser"); const path = require("path"); cons.. 2021. 5. 2. 이전 1 다음