
I will teach you what is sails.js and why you should use sailsjs to build rest apis
In this video, you are going to learn how to create new sails project using sails-cli
In this video, you are going to learn the directory structure of sails.js
In this video, you are going to learn how to add restful routing in sails.js
I will teach you what are shortcut routes in sails.js and how to work with shortcut routes
I will teach you how to debug the sailsjs app to webstorm
I will teach you how to debug the sails.js app to VS Code
I will show you how to debug the sails.js app using chrome web browser
You are going to connect sails.js application to Mysql
You are going to learn how to integrate sailsjs application to MongoDB
You will learn how automigrate works in sails.js
I will explain the schema diagram of our demo application
You will learn how to create new model in Sails.js
I will show you how to create new record in sails.js model
I am going to show you how to create new record in company model
You are going to learn how to use Async/Await with Sails.js model
You are going to learn how to use find method of sails.js model
You are going to learn how to find single record from models in sails.js
You will learn how to update the record in sails.js
You are going to learn how to delete the company by id
I am going to teach how to implement one way association in sails.js
You will learn how to solve the challenge of one way association
I am going to show you how to create new record in sails.js
I will show you how to find all the records
I am going to show you how to implement one to many relationship
I am going to show you how to add relationship between Job and company
I am going to show you how to populate jobs with company
I am going to show you how to implement many to many relationship in sails.js
I am going to show you how to create and find all the applications
I am going to teach you what is JWT authentication in sails.js
I am going to show you how to create new user model in sails.js
I am going to show you how to add validations with joi package
You are going to learn how to save user to the db
I am going to show you how to encrypt the user password
I am going to show you how to implement the login method in sails.js
You will learn how to create JSON web token in sails.js
I am going to teach you how to create new policy in sails.js
I am going to show you how to apply policies to all routes in sails.js
You are going to learn how policies work in sails.js
I am going to teach you how to add relation with company and user
Explore what Next.js is, why we need it, and how to set up a Next.js app with routing and linking, while comparing server-side and client-side rendering.
Set up a Next.js application from scratch by initializing the project, installing react, react-dom, and next, configuring run scripts, and creating an index page with server-side rendering and routing.
Explore next.js routing by building client-side navigation with the link component, creating pages in the pages directory (about, post, user), and understanding when manual navigation renders on the server.
Create and use shared components inside pages, including a header component with links and styling, and leverage the link component for client-side navigation in a zero-configuration, server-rendered application.
Sails.js is a JavaScript back-end framework that makes it easy to build custom, enterprise-grade Node.js apps. It is designed to emulate the familiar MVC pattern of frameworks like Ruby on Rails, but with support for the requirements of modern apps: data-driven APIs with a scalable, service-oriented architecture. It's especially good for building chat, real-time dashboards, or multiplayer games; but you can use it for any web application project - top to bottom.
Whether you’re a front-end developer seeking to expand your back-end knowledge, or a server-side developer unfamiliar with using Node and JavaScript on the back-end, the common denominator we all share is a desire to create web applications. Sails is designed to be compatible with whatever strategy you have for building your front-end, whether it be Angular, Backbone, iOS/ObjC, Android/Java, or even a “headless” app that just offers up a raw API to be used by another web service or your developer community. Sails is great for building everyday back-end apps that handle HTTP requests and WebSockets.
What can you build with Sails.js?
Hybrid Web Applications - applications that combine a JSON API with server-rendered views, that is, in addition to an API, this type of application can serve dynamic (i.e. personalized) HTML pages, making it suitable for use cases which demand SEO (search engine optimization). These applications often use a client-side JavaScript framework (e.g. Angular, Ember, React, etc.), but they don’t necessarily have to. Examples of hybrid web applications you might be familiar with are Twitter, GitHub, and Basecamp.
Pure APIs – applications that fulfill requests from one or more independent front-end user interfaces. We say independent” because the front-end doesn’t have to be delivered by the same server that is providing the JSON API, or even by a server at all. This umbrella category includes SPAs (single-page apps), native mobile applications (e.g. iOS and Android), native desktop applications (e.g. OSX, Windows, Linux), and the venerated IoT (Internet of Things). Many mobile-first products (think Uber, Instagram, Snapchat) start off as pure APIs.
So why Sails.js?
What you will learn in this course?