
Product
Introducing Socket Firewall Enterprise: Flexible, Configurable Protection for Modern Package Ecosystems
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.
emoji-server
Advanced tools
add emoji to your site by adding this middleware.
var emoji = require('emoji-server')('/emoji')
//just pass the path you
//want them hosted on.
var http = require('http')
//a http server that only hosts emoji
http.createServer(emoji).listen(3000)
//inside another server
http.createServer(function (req, res) {
if(req.url.indexOf('/emoji')
return emoji(req, res)
//handle other stuff etc.
res.end('<img src=/emoji/+1.png>')
}).listen(3001)
//or works like connect/express/etc middleware
var app = require('connect')()
app.use(emoji)
app.use(function (req, res) {
res.end('<img src=/emoji/+1.png>')
})
//add more stuff, etc
http.createServer(app).listen(3002)
MIT
FAQs
emoji serving middleware
We found that emoji-server 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
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.

Security News
Open source dashboard CNAPulse tracks CVE Numbering Authorities’ publishing activity, highlighting trends and transparency across the CVE ecosystem.

Product
Detect malware, unsafe data flows, and license issues in GitHub Actions with Socket’s new workflow scanning support.