UNPKG
picasso-paint
Version:
latest (9.0.0)
9.0.0
Paint , a simple CSS-in-JS library that allows you to write CSS in JavaScript cssText/Object
picasso-paint
/
server.js
10 lines
(7 loc)
•
182 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
const
express =
require
(
"express"
);
const
app =
express
(); app.
use
(express.
static
(
"./"
));
const
PORT
=
8482
; app.
listen
(
PORT
,
()=>
{
console
.
log
(
`Drawing at port
${PORT}
....`
); });