A pixel art painter geared specifically at NES pixel art. Includes export for .chr binary file as well as palette and namespace data.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

16 lines
472B

  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.set('views', path.join(__dirname, "/views"));
  7. app.engine('html', require('ejs').renderFile);
  8. app.set('view engine', 'html');
  9. app.use("/app", express.static(path.join(__dirname, "/app")));
  10. app.get('/', function(req, res){
  11. res.render('index.html');
  12. });
  13. app.listen(port, () => console.log("NESPaint listening on port " + port + "!"));