Giter Club home page Giter Club logo

dat-simple-server's Introduction

dat simple server

Do you remember the time you'd drop a .php file into a ftp folder, and instantly, it was deployed?

Well, welcome to that again :)

Getting started

You can run the server quickly with npx dat-simple-server.

Here are the command line options:

  • --public=./: The public folder to serve
  • --port=8001: The port for your server
  • --host=0.0.0.0: The host for your server

When running with default options, you'll end up with a server running on http://0.0.0.0:8001 which will be serving javascript files under ./ similarly to lambdas.

A minimal example for a file to serve is:

module.exports = async (req, res) => {
  res.end('hello world')
}

You don't need to re-run the server. Just make an other request (refresh your browser?) and you should be good to go.

Going further

You can have this server running in a monitored environment with pm2 and its folder exposed as part of an (s)ftp server, while handling service as an upstream with nginx.

Doing so, the experience should be pretty similar to "php-fpm + drag&drop php file to my ftp" deployment process.

Importing in an application

The middleware responsible for loading the script is compatible with express and similar (req, res) libraries. You can reuse it easily:

const { middleware } = require('dat-simple-server')
express.use('/', middlewware(`${process.cwd()}/api`, 30000))

dat-simple-server's People

Contributors

y-nk avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.