Product
Introducing Java Support in Socket
We're excited to announce that Socket now supports the Java programming language.
if you need a quick server for development, autodev is your friend.
It watches all dependencies and restarts the server on changes.
npm install --save-dev autodev
// devserver.js
// requires outside won't get watched
Koa = require("koa") // koa
express = require("express") // express
module.exports = (server, isRestart) =>
// requires inside will get watched
yourapp = require("./yourapp")
// your startup code
// koa
app = new Koa()
server.on("request",app.callback())
// express
app = express()
server.on("request",app)
// startup server
server.listen(8080)
return () =>
// your teardown code
# call on terminal:
autodev devserver.js
Copyright (c) 2017 Paul Pflugradt Licensed under the MIT license.
FAQs
quick auto restart script for dev servers
We found that autodev demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
We're excited to announce that Socket now supports the Java programming language.
Security News
Socket detected a malicious Python package impersonating a popular browser cookie library to steal passwords, screenshots, webcam images, and Discord tokens.
Security News
Deno 2.0 is now available with enhanced package management, full Node.js and npm compatibility, improved performance, and support for major JavaScript frameworks.