일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- 기준
- node.js
- middleware
- built in object
- CSS
- concept
- JavaScript
- useState
- CLASS
- Interface
- solidity
- blockchain
- error
- HTML
- Redux
- evm
- graphQL
- Ethereum
- SSR
- REACT
- 삶
- nextJS
- Props
- web
- bitcoin
- API
- typeScript
- express.js
- hardhat
- tailwindcss
- Today
- Total
목록API (8)
ReasonJun

OpenAI NodeJS SDK v4 was released on August 16, 2023, and is a complete rewrite of the SDK. If you install V4 and apply the grammar from V3, you'll get the error above. https://platform.openai.com/docs/api-reference/chat OpenAI Platform Explore developer resources, tutorials, API docs, and dynamic examples to get the most out of OpenAI's platform. platform.openai.com The above is the official Op..
In web development, the history object in JavaScript provides access to the browser's history stack. It allows you to programmatically manipulate the browser's history, navigate between pages, and control the browsing session. Here are the key aspects of the history object: Accessing the History Object: The history object is accessible through the window.history property. Navigating History: The..
In web development, the "Web Storage" API provides a way to store data locally in the user's web browser. It consists of two mechanisms: localStorage and sessionStorage. Both mechanisms offer a simple key-value storage interface and are supported by modern web browsers. Here are the key points about Web Storage: localStorage: The localStorage object allows you to store key-value pairs persistent..
cookie In web development, a cookie is a small piece of data stored by a website in the user's web browser. Cookies are commonly used to store information that can be retrieved and used by the website or other websites that recognize the cookie. They are primarily used for session management, personalization, tracking, and maintaining user preferences. Here are some key points about cookies: Sto..
console // console //? .log(), .warn(), .error(), .dir() // -log : general message // -warn : warning message // -error : error message // -dir : Output an object whose properties can be viewed console.log(document.body); console.warn(document.body); console.error(document.body); console.dir(document.body); //? .count(), .countReset() // Prints or initializes the cumulative number of console met..
//? document.createElement() // Creates and returns a new html element that only exists in memory. const divEl = document.createElement('div'); console.log(divEl); //? E.prepend() / E.append() // Inserts a node as the first or last child of an element. const parentEl = document.querySelector('.parent'); const el = document.createElement('div'); el.textContent = 'Hello'; parentEl.prepend(new Comm..