Netrobase Engrsnetrobase.dev·Nov 19, 2024How To Add Modules, Lessons, and Units In An Existing Course In The LMS As A Teacher In KralisIntroduction: Managing course content effectively is a critical aspect of online education. If you're a teacher using the Kralis Learning Management System (LMS), you have the flexibility to enhance your courses by adding modules, lessons, and units....DiscussKralis LMS#kralis
Asawerasawer.hashnode.dev·Nov 19, 2024Node.js Path Module: A Comprehensive Guide for Beginners1. What is the path Module? The path module is a built-in Node.js module used to work with file and directory paths. It provides utilities to: Construct paths. Normalize paths. Resolve absolute paths. Extract specific parts of paths (like directo...DiscussNode.js
Asawerasawer.hashnode.dev·Nov 19, 2024Mastering the Node.js Module System: A Comprehensive Guide for DevelopersA module is a reusable piece of code encapsulated in its own file or directory. Node.js uses the CommonJS module system by default and also supports ECMAScript Modules (ESM). 1. Node.js Module System Node.js has a built-in module system that allows ...DiscussNode.js
Divyanshi Singhserverless-architecture.hashnode.dev·Nov 6, 2024What are terraform modules and how they are advantageous??Modules generally solve the issue of monolithic architecture. What exactly is monolithic architecture? When the entire code is written as a one single application or one project. This architecture faces alot of issues such as code test, updates, owne...DiscussTerraform SeriesTerraform
Vijayendra Prasadvijaywrites.hashnode.dev·Oct 2, 2024The Ultimate Beginner's Guide To Python FrameworksBefore diving into frameworks, let us understand basic definitions of modules, packages, libraries, and frameworks in Python. Modules are the basic building blocks or individual files containing Python code that define functions, classes, or variabl...Discuss·36 readsWeb Development
ِAya Nabil Othmanayanabilothman.hashnode.dev·Sep 11, 2024Configure Jest to use it with NodeJS ECMAScript ModulesInitialize your application: npm init To use ES modules, add type: "module" to package.json file. Install Jest npm i jest Initialize Jest npm init jest@latest In jest.config.mjs file: de-comment transform key and assign it a value like tr...Discuss·2 likes·28 readsJavaScript
Dharm Joshidharmjoshi.hashnode.dev·Sep 6, 2024FeaturedBuild End-to-End Authentication and Authorization system in NodeJSIntroduction In day-to-day terms using every application or website that requires some of your information to store and then allows you to have your account access using a combination of password and another identifier like your Email-Id or your user...Andrew Baisden and 3 others are discussing this4 people are discussing thisDiscuss·44 likes·691 readsNode.js
Rushikesh Patilrrp8208.hashnode.dev·Sep 4, 2024Next.js Styling: A Guide to Using Modulesusing modules in next js for styling my_next_project/ ├── public/ │ ├── index.html │ └── favicon.ico ├── src/ │ ├── components/ │ │ └── header.tsx header-styles.module.css │ ├── styles/ │ │ └── App.css ├── package.json ├─...DiscussNext.js
Kartik Sangalkartik-devops.hashnode.dev·Aug 30, 2024Chapter - 1To initialize the Node JS project, run the following command in the terminal: $ npm init It will prompt you some questions (name, version, description, entry point, etc.). You can either answer them or press Enter to accept the defaults. At the end, ...Discuss·2 likesNode.js
Saurav Kumarblog.sauraverse.com·Aug 26, 2024require() vs import: What You Need to Know in JavaScriptWhen I first started coding, one of the things that baffled me was seeing some JavaScript files using require() to import modules while others used import. This inconsistency across projects left me puzzled. If you’ve ever been confused about this to...Discuss·1 likeJavaScript