Skip to content

Instantly share code, notes, and snippets.

View Osman8a's full-sized avatar
🎯
Focusing

Osman Ochoa Osman8a

🎯
Focusing
View GitHub Profile
@rajatk16
rajatk16 / ._Setup Javascript Project with ES6 + Babel 7 + ESLint + Airbnb + Prettier
Created March 16, 2020 15:11 — forked from vukhanhtruong/._README.md
Setup Javascript / Nodejs Project with ES6 + Babel 7 + ESLint + Airbnb + Prettier
# Project Setup
Create a directory and run the following command.
```sh
npm init
```
For this tutorial, I will be adding an index.js file to the `src` folder, and this will be our entry point.
Our file directory should look like this.
@JaniKibichi
JaniKibichi / app.js
Created October 2, 2016 10:34
Sample code about uploading pictures to cloudinary using multer - NodeJs ExpressJS Framework
'use strict';
var express = require("express");
var multer = require('multer');
var app = express();
var options = require('./config/config')
var mongoose = require('mongoose');
/* photo manenos */
var cloudinary = require('cloudinary');