We will use this package to show an interactive calendar on our site
In your React code terminal run
const router = require("express").Router(); | |
// Lazy me, I don't have time to convert superagent to axios | |
const request = require('superagent'); | |
const UserModel = require('../models/User.model') | |
function requestAccessToken(code) { | |
return request.post('https://www.linkedin.com/oauth/v2/accessToken') | |
.send('grant_type=authorization_code') | |
.send(`redirect_uri=${process.env.LINKEDIN_REDIRECT_URI}`) | |
.send(`client_id=${process.env.LINKEDIN_CLIENT_ID}`) |
We will use this package to show an interactive calendar on our site
In your React code terminal run
We will use this package to show a map on our site
We will use this package to show lottie animations on our site
In your React code terminal run
To check how to deploy with Heroku-cli read here
You can find the sample working code here
We will use Ironlauncher package that we used in module2 to set up our full-stack project code template. But this time we'll use to set up our client side code as well.
(Note: create-react-app
is inbuilt in this package)