express-simple-routing

Very simple and basic routing setup

Usage no npm install needed!

<script type="module">
  import expressSimpleRouting from 'https://cdn.skypack.dev/express-simple-routing';
</script>

README

express-simple-routing

 GET     /          ->  actions.index
 GET     /new       ->  actions.new
 POST    /          ->  actions.create
 GET     /:Id       ->  actions.show
 GET     /:Id/edit  ->  actions.edit
 PUT     /:Id       ->  actions.update
 DELETE  /:Id       ->  actions.destroy