• Rashi Phal – Show Moving Circular Kundali Image

    Show Circular Moving Image

    Read More

  • Rashi Phal – Showing Current Data & Time

    Show Current Date & Time

    Read More

  • Rashi Phal – Vercel Web Hosting

    Rashi Phal – Vercel Web Hosting

    Vercel Web Hosting Steps

    Read More

  • Rashi Phal – Google Firebase Web Hosting

    Rashi Phal – Google Firebase Web Hosting

    Google Firebase Web Hosting Steps

    Read More

  • 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

    Read More

  • 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":

    Read More

  • Rashi Phal – nodebook Installation

    nodebook Installation

    Read More

  • 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

    Read More

  • Rashi Phal – How To Setup Virtual Env In Node Project ?

    How To Setup Virtual Environment In Node Project?

    Read More

  • 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" }

    Read More