Create a login and register with React and Strapi Backend
| | | |

Create a login and register with React and Strapi Backend

From our previous blog in making a register page with React js + Ant Design (see.. https://about.lovia.id/3-easy-step-to-create-signup-form-with-ant-design-reactjs/), for now we’re gonna connect it to our Strapi Backend and make it functional. The frontend is using the miluv-pwa repository and the backend is using lovia-profile repository. The core thing that we need to do is we…

3 Easy Step to Create Signup form with Ant Design || ReactJS
| |

3 Easy Step to Create Signup form with Ant Design || ReactJS

Here’s an easy step by step on how to create a signup form with Ant Design. first, we have to install Ant Design package. Go to https://ant.design/docs/react/introduce and you can see how to install it. You can install it with npm or yarn. // with npm npm install antd // with yarn yarn add antd Then you…

Easy to Create, Signup form with Material UI || ReactJS
| |

Easy to Create, Signup form with Material UI || ReactJS

Here’s an easy step by step on how to create a signup form with material UI. first, we have to install Material-UI package. Go to https://material-ui.com/getting-started/installation/ and you can see how to install it. You can install it with npm or yarn. // with npm npm install @material-ui/core // with yarn yarn add @material-ui/core Then…

How to Create a Mutation Query of Create a user in Graphql || Nestjs + Typeorm + Mongodb
| | | |

How to Create a Mutation Query of Create a user in Graphql || Nestjs + Typeorm + Mongodb

In this blog, we will discuss how to make a Mutation on Graphql to Create and Modify a user. We only gonna modify 2 files, user.service and user.resolvers user.service user.resolver Mutation: Create User user.service We will create one function here to create a user, we’ll name it ‘createUser(userData)‘. We have one parameter here containing all…

How to Create Query for Getting User by ID in Graphql || Nestjs + Typeorm
| | | |

How to Create Query for Getting User by ID in Graphql || Nestjs + Typeorm

In this blog, we will discuss how to make a query to fetch one user by id. This’s very simple. We only gonna modify 2 files, user.service and user.resolvers user.service user.resolver user.service We’ll make one function with just one line of code. The code is simply finding our expected user in our database. With Typeform,…

Installation and CRUD for Mongodb – Learn Mongodb for Dummies
|

Installation and CRUD for Mongodb – Learn Mongodb for Dummies

Installation for MongoDB locally on windows computer Download Mongodb Download MongoDB here. Choose the MongoDB Community Server. Run the Installer Just click next.. Edit Path Edit your environment variable in System Properties. Edit path variable on your User Variables. Add The MongoDB’s Bin folder, usually in C:Program FilesMongoDBServer4.2bin     Run MongoDB $ mongod $ mongo…