Swap76 / NodeJS_Mongo_BoilerPlate

CRUD Blog using NodeJS,Express, MongoDB
GNU Affero General Public License v3.0
21 stars 10 forks source link

Convert all requires into imports #17

Closed Swap76 closed 5 years ago

Swap76 commented 5 years ago

The code which is using require

const express = require('express');

should be converted to this

import express from 'express';