전체 글 (127) 썸네일형 리스트형 [Swift] Swift 애플 공식 문서 1. 공식사이트 https://developer.apple.com/swift/ Swift - Apple Developer Swift is a powerful and intuitive programming language for iOS, iPadOS, macOS, tvOS, and watchOS. Writing Swift code is interactive and fun, the syntax is concise yet expressive, and Swift includes modern features developers love. developer.apple.com https://docs.swift.org/swift-book/documentation/the-swift-programming-language/ [Node.js] 자동화관련 npm -node scheduling : 정해진 스케쥴 관련 https://www.npmjs.com/package/node-schedule node-schedule A cron-like and not-cron-like job scheduler for Node.. Latest version: 2.1.1, last published: 3 days ago. Start using node-schedule in your project by running `npm i node-schedule`. There are 1493 other projects in the npm registry using node-schedule. www.npmjs.com -nodemailer : 메일 보내는 것 (Gmail) https://www... [Node.js] sequelize 생성, 조회, 변경, 삭제 API 생성 mainRouter.js const db = require('../model/db'); 추가 router.get('/data/create', function(req,res) { let user_id = parseInt(Math.random() * 10000); //랜덤으로 생성 db.users.create({user_id: user_id}).then(function(result){ res.send({success: 200}) }) }) const express = require('express'); const router = express.Router(); const db = require('../model/db'); router.get("/", function(req, res) { //app.js.. 이전 1 2 3 4 5 6 7 ··· 43 다음