A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

13 行
363B

  1. const fs = require("fs");
  2. const path = require("path");
  3. const express = require("express");
  4. const app = express();
  5. var port = 8000;
  6. app.use("/app", express.static(path.join(__dirname, "/app")));
  7. app.get('/', function(req, res){
  8. res.sendFile(path.join(__dirname, "/index.html"));
  9. });
  10. app.listen(port, () => console.log("NESPaint listening on port ${port}!"));