Skip to content
View acoyfellow's full-sized avatar
🤖
Building
🤖
Building
Block or Report

Block or report acoyfellow

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. FormSync FormSync Public

    Sync form values in client using LocalForage

    JavaScript 14 2

  2. brain_server brain_server Public

    A lightweight Koa server that uses brain.js and Redis as a datastore.

    JavaScript 2

  3. CORS Node.js Google Cloud Function f... CORS Node.js Google Cloud Function for returning Header information
    1
    const cors = require('cors')({origin: true});
    2
    
                  
    3
    exports.getHeaders= (req, res) => {
    4
      cors(req, res, () => 
    5
          res.status(200).send({ ...req.headers })