Short URL to this documentation: https://is.gd/youtube_tv_ui
- Install a separate browser and needed plugins + configure
- Let the browser automatically create a WebApp
- Add it to Steam to enable controller support
Short URL to this documentation: https://is.gd/youtube_tv_ui
n8n Chat Interface WebApp as workflow with Vue3
Posted here: https://community.n8n.io/t/n8n-chat-interface-webapp-as-workflow-with-vue3/114334
n8n simple start with vueEngine and using POST
Posted here: https://community.n8n.io/t/n8n-chat-interface-webapp-as-workflow-with-vue3/114334
native
npm pack <package>
alternative
npm pack
)npx npm-package-downloader -d -p -o out
How Gemini 2.5 Flash groups the models and orders the newest to the top. (2025-05-09)
Fed the JSON from the REST API endpoint https://generativelanguage.googleapis.com/v1beta/models/?key=<GEMINI_KEY>
into the chat.
Using Baio
AI commandline tool.
what models could you use?
show them as a tree, grouped by name, with newest at the top.
install https://github.com/coreybutler/nvm-windows
choco install nvm.install
winget install -e --id CoreyButler.NVMforWindows
install node v22.10.0 (NEWER IS NOT SUPPORTED!)
nvm install 22.10.0
install n8n
import { createServer } from 'node:http'; | |
import { execSync } from 'node:child_process'; | |
const server = createServer(async function (req, res) { | |
Object.entries({ | |
'Content-Type': 'application/json', | |
'Access-Control-Allow-Origin': '*', | |
'Access-Control-Allow-Methods': '*', |
import package from './package.json' with { type: "json" }; | |
let version = await fetch(`https://registry.npmjs.com/${package.name}/latest`).catch(_=>undefined).then(d => d?.json?.()).then(({version})=>version).catch(_=>undefined); | |
console.log(`Newest version is ${ version ?? 'unknown' }`); |
#donotForgetAgain
set npm shell to be powershell 7+
npm config set script-shell pwsh --global