Giter Site home page Giter Site logo

rekwest-bin's Introduction

Request Bin Clone

Features:

  • Create a bin (gives you an end point)
  • Log requests made to the bin
  • Display the last 20 requests made to the bin

Other Requirements:

  • Bins are automatically deleted after 48 hours
  • Each bin has a limit of 20 requests (FIFO)

ERD

  • Database in MongoDB
    • 1 collection
    • each bin is a document
    • each bin has a list of requests

Schema:

bin: {
  binId: string,
  created_at: timestamp,
  requests: [
    {
      method: string,
      host: string,
      path: string,
      created: timestamp,
      parameters: {},
      headers: {},
      body: string,
    },
    {
      ...
    }
  ]
}

Todos

  1. Testing
    • Tests for the backend
  2. MongoDB
    • One collection for all bins
    • Each bin is a document
    • Each document has an array of requests
    • Figure out how to add and slice at the same time
  3. Integrate Mongo with what's working already
    • API: Abtract out the data storage part first into its own package
    • Then swap mongo in for that
  4. Frontend
    • Look at templating in Go
    • Create template for the various pages
  5. Deployment
  6. Automatic deletion (cron job)

rekwest-bin's People

Contributors

gontzess avatar josh-keller 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.