npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

servile

v1.3.4

Published

A quickstarter for NodeJS-based apps, automagically routing requests to files of same name within a given folder. Targeted at prototypers, not made for production.

Downloads

11

Readme

servile

A lightweight quickstarter for NodeJS-based apps, automagically routing requests to files of same name within a given folder. For local use and prototyping, not ment for production.

What

a. A static file server: Asking for 'example.org/picture.png', returns 'picture.png', if present in a given directory.

b. A dynamic file server: Asking for 'example.org/about' will check for:

  1. A JS-file of same name: If it returns a function, execute the function upon the request- and response-object. If a string was returned send it as the answer with content-type HTML, if an object was returned send it as the answer with content-type JSON, otherwise continue to next point.

  2. An static (html, json, md, txt) file of same name: Answer with fitting content-type.

  3. A directory of same name: Add '/index' to the requested path and proceed from point 1.

c. A parser for posted data: If a user fills out an HTML-form, the data is parsed to an object, e.g.: '{ "someFieldName": "someValue" }'.

d. A CORS header setter.

e. A supporter for server-side-events (SSE).

f. A supporter for synchronous functions with the async/await-syntax.

Why

a. Save time by not downloading a huge framework.

b. Save time by not manually typing routing logic.

c. Save time by not adding a middleware for parsing posted data.

d. Save time by not setting a CORS header, so others can load your resources.

e. Save time by not setting up a websocket-server for talking to the client.

f. Save time by not writing endless callback hells and get that Python feeling.

If you want to save even more time during development, check out the packages 'nodemon' and 'browser-sync'.

How

After installing this package with npm i servile in your package, add this line to your main-script and run it:

require('servile').serve()

The console should then show something like:

Serving "/home/user/mySuperApp" on "http://localhost:3000"

Now you can drop files in the directory where you are and they be served.

You can also install servile globally with npm i servile -g and then do this of the commandline in any directory:

serve

Options

You can specify all, or some, or one of the following options:

require('servile').serve({
  filesPath: 'public',
  port: 2727,
  answerNotFound:  req => { return `Nothing found for ${req.url}` },
  answerDirectory: req => { return `Found folder ${req.url}`},
  ignoreIndexFiles: false,
  staticIndexTypes: ['html', 'json', 'md', 'txt']
})

On the commandline you can pass 'port' and 'filesPath':

serve -p 8080 -f publik

Example

For serving 'example.org/register' your 'register.js'-file could be:

module.exports = (request, response) => {

  if(request.data) {

    // do something with request.data

  }

  return 'Some html'

}

In case you want to do some backend-logic in the background and then send a static-file, simply remove the return-line and provide a 'register.html' or a 'register.json'-file.

Synchronous functions are supported, using the async/await syntax. If you want or need that, the script would be roughly like this:

module.exports = async (request, response) => {

    await yourHandler(request)

}

The response object is passed, too, to give you full control:

module.exports = (request, response) => {

    response.writeHead(400, { "Content-Type": "text/html" })

    response.end("<h1>400 – Bad request</h1>"
               + "<p>You've been a bad, bad requester.</p>")

}

Server side events

Server side events (SSE) are supported, e.g. for serving 'example.org/stream' your 'stream.sse'-file is expected to export a main-function and could be like:

let clientId = 0
let clients = {}

function sendToClient(client, data) {
  client.write('id: ' + (new Date()).toLocaleTimeString() + '\n')
  client.write('data: ' + data + '\n\n')
}

function sendToClients(data) {
  for(clientId in clients) {
    sendToClient(clients[clientId], data)
  }
}

function main(req, res) {

  (function (clientId) {
    clients[clientId] = res       // collect new client
    req.on('close', function () { // client disconnected
      delete clients[clientId]    // remove client
    })
  })(++clientId)

  sendToClient(res, 'Welcome client, you are connected!')

  sendToClients('We got a new member joining!')

}


module.exports = {
  main: main,
  sendToClient: sendToClient,
  sendToClients: sendToClients
}

You can use the exported methods in other scripts like this:

const { sendToClient, sendToClients } = require('./path/to/stream.sse')

Note that the file-extension '.sse' needs to be written, too.

You can then handle the message on the client-side in a frontend-script:

var source = new EventSource('/stream') // name of sse-file

source.onmessage = function(eve) {

  console.log(eve)

}

Author

Ida Ebkes, 2019.

License

MIT, a copy is attached.

Contact

For bug-reports or any message you want to transmit, please open an issue on:

https://github.com/ida/servile/issues

Contributions are very welcome, if you're a beginner don't hesitate to ping.