vi filename.txt
- Open a file:
- Enter Command Modeu
- Undo changesctrl+u
- Redo Changes:q
- Quit Vim:q!
- Force quit vim without saving
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
async function handleRequest(request) { | |
const init = { | |
headers: { | |
'content-type': 'application/json;charset=UTF-8', | |
'Access-Control-Allow-Origin': '*', | |
'Access-Control-Allow-Methods': 'GET' | |
}, | |
} | |
const { searchParams } = new URL(request.url) |