express.js - express.static - index file

  • Commit


  • use express.static
var express = require('express');  
var app = express()  
            .use(  express.static(__dirname + '/public')  )  
            .listen(3000);


沒有留言:

張貼留言

Lessons Learned While Benchmarking vLLM with GPU

Recently, I benchmarked vLLM on a GPU to better understand how much throughput can realistically be expected in an LLM serving setup. One ...