Expressjs — cors and jwt

Expressjs — cors and jwt

Let’s continue the article on API REST with sequelize In this article, we’ll add security to our application. There will be an /api/user/login url called in POST and allowing to connect thanks to the username/password pair. Once logged in, the information accessible only by a logged in user will be displayed. We will also add […]

Expressjs — Api Rest with sequelize

This article is a continuation of an article on connecting to a database through Sequelize. In this article, our goal is to create an API (Application Programming Interface) in REST (Representational State Transfer). JSON API Modify app.js and add // Api rest Controllers var apiRestRouter = require(‘./routes/rest/api’); To set the url/api, we also add this […]

expressjs — Connecting to a database with sequelize and its extensions (sequelize-cli, sequelize-auto, etc.)

This article is the continuation of a first article on the creation of a web application in nodejs thanks to the express-generator package. This time, our goal is to add a MySQL connection in order to retrieve information from a database and display this information in the application as a simple list. MySQL will be […]

expressjs — Api Rest avec sequelize

Cet article est la suite d’un article sur la connexion à une base de données grâce à Sequelize. Dans cet article, notre objectif est de créer une API (Application Programming Interface) en REST (REpresentational State Transfer). API en JSON On modifie app.js et on ajoute // Api rest Controllers var apiRestRouter = require(‘./routes/rest/api’); Pour définir […]

Expressjs — cors et jwt

Poursuivons l’article sur API REST avec sequelize Dans cet article, nous allons ajouter une sécurité à notre application. Il y aura une url /api/user/login appelée en POST et permettant de se connecter grâce au couple identifiant/mot de passe. Une fois connecté, on affichera, les informations accessibles uniquement par un utilisateur connecté. On ajoutera également une […]

Create a nodejs/express application with express-generator

Prerequisite: nodejs Installation of prerequisites Nodejs We Install nodejs. Go to https://nodejs.org/en/ and download the installer. I took the version “12.4.0 Current” We’re checking the installation. node -v v12.4.0 Express-generator Express-generator is an all-in-one tool that allows you to quickly create a node-js application using the express library. Thanks to this generator, it will be […]

expressjs —Connexion à une base de données avec sequelize et ses extensions (sequelize-cli, sequelize-auto…)

Cet article est la suite d’un premier article sur la création d’une application web en nodejs grâce au package express-generator. Cette fois ci, notre objectif est d’ajouter une connexion MySQL pour pouvoir récupérer les informations depuis une base de données et afficher ces informations dans l’application sous forme de liste simple. On utilisera MySQL comme […]

Créer une application nodejs/express facile grâce à express-generator

Prerequis : nodejs Installation des prerequis Nodejs On installe nodejs. On va sur https://nodejs.org/en/ et on télécharge l’installateur. J’ai pris la version “12.4.0 Current” On verifie l’installation. node -v v12.4.0 Express-generator Express-generator est un outil tout en un qui permet de créer rapidement une application node-js en utilisant la librairie express. Il sera possible grâce […]