REPL is the read, evaluate print, and loop terminal which reads the nodejs syntax, evaluate it execute. It is an interactive command prompt or console to run and execute nodejs snippets. nodejs or node command …
Continue readingRunning Nodejs Program
Once the NodeJS installed you can run a first hello world program to test NodeJS development environment. Create a hello.js script and use a simple console.log function that prints a message to a screen. Save the hello.js script and run it …
Continue reading
Nodejs Environment setup
NodeJS Installation Nodejs can be installed by compiling source code and making an executable or by downloading a pre-built installer for your platform. To download Nodejs visit the official NodeJs website download section and select the Long …
Continue readingNodejs
Nodejs is an asynchronous event driven run time environment based on google chrome’s JavaScript engine. NodeJs is used to develop an scalable network application. Nodejs let us to run the JavaScript in the server side. …
Continue readingImporting XLSX and CSV file contents in cloud firestore using Reactjs
Hello all, I am going to write about import XLSX or CSV files to firestore. Please smile! I won’t only show how it works but I will give the source code and demo link in …
Continue readingDjango blog application conclusion
Now that you have created a portfolio/blog app. You can as a practice add a detail page for projects. You can also see this project in GitHub. You can compare this code if you get stuck …
Continue readingDjango admin panel model registration
At the end of this project, you have successfully created a portfolio blog. You can now add some data in the admin panel. For that, you need to register the models in the admin.py file. …
Continue readingDjango templates
Let’s started adding HTML file to support the views that previously created by using Django template engine. Django follows a templating language to understand more about Django template you can look at the documentation. Assuming you …
Continue readingDjango URLs
The URLs are a way of mapping incoming requests to a view. This mapping is generally done in the urls.py file. The main app(in this case portfolio_blog ) also need to know about this urls.py file. This …
Continue readingDjango views
Views in django are like controller in other frameworks. Views help to process the incomming request pull data from database(if required) and then send response to the client. Django Views Basics Django views can be …
Continue reading