-
Rashi Phal – Show Moving Circular Kundali Image
Show Circular Moving Image
-
Rashi Phal – Showing Current Data & Time
Show Current Date & Time
-

Rashi Phal – Vercel Web Hosting
Vercel Web Hosting Steps
-

Rashi Phal – Google Firebase Web Hosting
Google Firebase Web Hosting Steps
-
Rashi Phal – Birth Chart Generation Logic
Birth Chart Generation Logic 1 – Create ‘appapigenerate-kundaliroute.ts’ File route.ts file uses the ‘vedic-astrology-api’ to calculate the birth chart. We passes the birth data to the route.ts file from the Kundali/page.tsx file. Then the route.ts file returns the calculated BirthChart as a response. 2 – Create ‘appkundalipage.tsx’ File create the kundali folder under it create the page.tsx file. This page.tsx file will contain the UI for the Kundali circular chart. 3 – Create ‘libmahadashavimshottari.ts’ File vimshottari.ts file will contain the calculation for the dasha, mahadasha, antardasha , pratyantara daasha. This will return the calculation table. 4 – Create ”/images/planets-clipart/Sun.png” File
-
Rashi Phal – ‘vedic-astrology-api’ setup
vedic-astrology-api setup 1 – Official URL https://www.npmjs.com/package/vedic-astrology-api 2 – Package Installation npm i vedic-astrology-api 3 – Replace Your next.config.ts import type { NextConfig } from "next"; const nextConfig: NextConfig = { reactStrictMode: true, webpack: (config, { isServer }) => { // Fix for vedic-astrology-api Node.js modules in browser if (!isServer) { config.resolve.fallback = { …config.resolve.fallback, fs: false, net: false, tls: false, dns: false, child_process: false, http2: false, stream: false, zlib: false, crypto: false, path: false, os: false, }; } return config; }, }; export default nextConfig; 4 – Update package.json Scripts { "scripts": { "dev": "next dev – webpack", "build":
-
Rashi Phal – nodebook Installation
nodebook Installation
-
Rashi Phal – Install Volta Node Manager
Install Voltas Node Manager https://github.com/volta-cli/volta/releases/v2.0.2 volta install node volta install npm
-
Rashi Phal – How To Setup Virtual Env In Node Project ?
How To Setup Virtual Environment In Node Project?
-
Rashi Phal – TSLab Setup For Type Script Code
TSLab Setup Set-ExecutionPolicy RemoteSigned -Scope CurrentUser irm https://deno.land/install.ps1 | iex deno – version mkdir -p %APPDATA%jupyterkernelsdeno mkdir -p ~/.local/share/jupyter/kernels/deno { "argv": ["deno", "run", "–unstable", "–allow-read", "–allow-net", "{connection_file}"], "display_name": "Deno TypeScript", "language": "typescript" }
