By manish Sun, Dec 23, 2018
As per mentioned earlier, these tutorial are purely focused towards api development using python so we will directly start with Flask
By manish Sat, Dec 22, 2018
This article will be a serial of articles which will be used actual as a training guide in Excellence for learning python.
By manish Thu, Dec 20, 2018
React has many different types of components and all provide different kind of use cases and performance optmizations. In this post we will see different types of components in brief and which component to use when
Basic Component These are the default component of react which we use always, this has the all the react features like state, props, etc class Welcome extends React.Component { render() { return <h1Hello, {this.
By Bhavya Saini Thu, Dec 20, 2018
Authentication is one of the most basic features in any web app, in this post we will see some of the best practices on how to implement authentication in react apps. There are several ways of protecting your routes from an unauthenticated user in your React Application, for example, it can be done by using HOC pattern or by using React Context API. Lets see first how to protect routes using React Router.
By manish Thu, Dec 20, 2018
Angular CLI Angular CLI is a command line tool that you use to initialize, develop, scaffold, and maintain Angular applications.
What’s New The 7.1.2 release of Angular is here! This is a major release spanning the entire platform, including the core framework, Angular Material, and the CLI with synchronized major versions. This release contains new features for our tool chain, and has enabled several major partner launches. The new version depends on the latest version of TypeScript (v3.
By Vishal Kumar Thu, Dec 13, 2018
Environment Variables and Modes In the previous blog post we saw how to install a project using vue-cli@3 and some essential features. In this feature will see some optional but useful features with vue cli.
Environment variables are quite essential to every project. We should put variables like api base url, access keys, secret keys, etc in this and can easily have different values for dev, production etc. Lets see how to do.