Skip to content

Instantly share code, notes, and snippets.

View Gryffind96's full-sized avatar
🎯
Focused

Erwin Bustillo Gryffind96

🎯
Focused
  • Barranquilla-Colombia
View GitHub Profile
@Gryffind96
Gryffind96 / miscelaneous.md
Last active November 27, 2019 23:05
MISC REUSABLE FUNCTIONS FOR NODE JS BACKEND

bucket.js

const aws = require('aws-sdk'); 
const AmazonS3URI = require('amazon-s3-uri');
const s3 = new aws.S3({
    accessKeyId: process.env.IAM_USER_KEY,
    secretAccessKey: process.env.IAM_USER_SECRET,
    region: ''
});
@Gryffind96
Gryffind96 / gist:4d85d8d767a40540ffe4f7593b87fa22
Created January 29, 2019 19:22
HELPERS TO START BE A BACKEND DEVELOPER
PHP: https://www.codeofaninja.com/2017/02/create-simple-rest-api-in-php.html
ASP.NET CORE 2.x: https://docs.microsoft.com/en-us/aspnet/core/tutorials/first-web-api?view=aspnetcore-2.2&tabs=visual-studio
RAILS 5.x : https://scotch.io/tutorials/build-a-restful-json-api-with-rails-5-part-one
NODEJS: https://medium.com/williambastidasblog/estructura-de-una-api-rest-con-nodejs-express-y-mongodb-cdd97637b18b