mirror of
https://github.com/samsonjs/mit-license.git
synced 2026-03-25 09:25:49 +00:00
71 lines
1.8 KiB
JavaScript
71 lines
1.8 KiB
JavaScript
// IMPORTANT: Set the `github_token` environment variable to a personal access token with at least the `public_repo` scope for the API.
|
|
// The `PORT` environment variable can also be set to control the port the server should be hosted on.
|
|
import path, {dirname} from 'node:path'
|
|
import process from 'node:process'
|
|
import express from 'express'
|
|
import minify from 'express-minify'
|
|
import favicon from 'serve-favicon'
|
|
import postcssMiddleware from 'postcss-middleware'
|
|
import tempDirectory from 'temp-dir'
|
|
import postcssPresetEnv from 'postcss-preset-env'
|
|
import cors from 'cors'
|
|
|
|
import {fileURLToPath} from 'node:url'
|
|
|
|
import postRoute from './routes/post.js'
|
|
import getRoute from './routes/get.js'
|
|
|
|
// Server
|
|
const PORT = process.env.PORT || 8080
|
|
|
|
const directoryName = dirname(fileURLToPath(import.meta.url))
|
|
|
|
// Prepare application
|
|
const app = express()
|
|
app.use(
|
|
minify({
|
|
cache: tempDirectory,
|
|
}),
|
|
)
|
|
app.use(favicon(path.join(directoryName, 'favicon.ico')))
|
|
app.set('views', path.join(directoryName, '/licenses'))
|
|
|
|
// Setup static files
|
|
app.use('/robots.txt', express.static('robots.txt'))
|
|
app.use('/favicon.ico', express.static(`${directoryName}/favicon.ico`))
|
|
app.use(
|
|
'/themes',
|
|
postcssMiddleware({
|
|
plugins: [
|
|
postcssPresetEnv({
|
|
overrideBrowserslist: '>= 0%',
|
|
}),
|
|
],
|
|
src(request) {
|
|
return path.join(directoryName, 'themes', request.path)
|
|
},
|
|
}),
|
|
express.static('themes'),
|
|
)
|
|
|
|
// Middleware
|
|
|
|
// CORS
|
|
app.use(cors())
|
|
// Parse URL-encoded bodies (as sent by HTML forms)
|
|
app.use(
|
|
express.urlencoded({
|
|
extended: true,
|
|
}),
|
|
)
|
|
// Parse JSON bodies (as sent by API clients)
|
|
app.use(express.json())
|
|
|
|
// HTTP endpoints
|
|
app.post('/', postRoute)
|
|
app.get('/*', getRoute)
|
|
|
|
// Start listening for HTTP requests
|
|
app.listen(PORT, () => {
|
|
console.log(`🚀 on http://localhost:${PORT}`)
|
|
})
|