Sonu Kumarrepl.hashnode.dev·Nov 22, 2024REPL in NodeREPL, which stand for Read Eval Print Loop, is an interactive programming enviroment that allows you to execute Javascript code in the real time time . In Node.js, the REPL functionality provide a Command-Line interface(CLI) where you can type Javasc...10 likesNode.js
Pranav Bawgikarpranavbawg.hashnode.dev·Jun 17, 2024Why developers should use Node.js[14] Introduction Node.js is a cross-platform runtime environment and library for running JavaScript applications outside the browser. It is used for creating server-side and networking web applications. It is open source and free to use. Many of the...Node.js
manish maharjanforJoBins Engineeringblog.jobins.jp·May 24, 2024PHPStorm: Scratch Files as TinkerAs a developer, we often need quick test code snippets, library exploration, or debugging specific application parts. Observing the history of such tasks, Laravel's Tinker seems the most preferred choice.However, using PHPStorm as an IDE for developm...10 likes·67 readsScratch files
Vishwajit VmforVishwajit Vm blogvishwajitvm.hashnode.dev·May 13, 2024Exploring the Power of Node.js REPL: A Developer's GuideIntroduction Node.js, with its efficient runtime environment and vast ecosystem, has become a go-to choice for developers worldwide. At the core of Node.js lies its Read, Evaluate, Print, Loop (REPL) cycle, a powerful tool that facilitates rapid prot...V8Engine
Favour Olumesethecodingprocess.hashnode.dev·Nov 3, 2023Publishing Code on ReplitReplit is a cloud-based Integrated Development Environment (IDE) that allows coding in the cloud with support for over 50 programming languages, including but not limited to Python, Java, C, Ruby, PHP, and more. It also supports frameworks such as Py...64 readsrepl.it
Anthony Simmonasimmon.hashnode.dev·Sep 12, 2023The best C# REPL is in your terminalA Read-Eval-Print-Loop (REPL) is an interactive program that reads your input, evaluates it, prints the result, and loops back to the beginning. It's a great way to experiment with a programming language and an excellent method for learning a new lan...78 reads.NET
Richard Rodgerrjrodger.hashnode.dev·Sep 4, 2023Why you should be using a REPL all the way to productionLet’s talk about one of the most productive tools a coder can use: the REPL! The first half of this article gives you a short introduction to the subject if you’re not a coder. If you are a coder, skip ahead to the second half where I talk about usin...repl
Richard Rodgerrjrodger.hashnode.dev·Aug 2, 2023@seneca/repl Version 6 Released!I've released a substantial update to the @seneca/repl plugin! The @seneca/repl plugin provides a REPL for the Seneca microservices framework. As one of the earliest plugins, it has proven to be incredibly useful. A REPL (Read-Execute-Print-Loop) off...Microservices
Vaishnav Srivastavavaishnavsrivastavablog.hashnode.dev·Jul 9, 2023Nodejs|Day1|8/7/23;Node.js is an open-source, cross-platform runtime environment that executes JavaScript code on the server side. It provides a rich set of libraries and modules, making it ideal for building scalable and high-performance web applications. With Node.js...Node.js
Rajashree Parhirajashreeparhi.hashnode.dev·Feb 14, 2023Why does Chrome console.log always append a line saying 'undefined'?Introduction Have you noticed this behaviour when you type console.log() in the Chrome console window? You are getting two values here- Hello undefined The first output is the expected one but what about the second output? Any guess? It is becau...8 likes·666 readsJavaScript