Pricing Blog

Help forum

  • sanedealer-1441475487699570872

    Edwin Paul

    7

    1 day ago

    How can i prevent my web app from being embedded in an iframe?
    The only reliable way seems to be setting a page header, but that isn't possible in NC right now.
  • mohammed1236222-1441465021254205531

    mohammed123

    1

    1 day ago

    MacOS style Portfolio
    hello
    can we create website like this in nordcraft ?
    https://macosportfolio.netlify.app/
  • uunicode-1441392355113435258

    unicodes

    41

    1 day ago

    How do you manage table access based on user profile (supabase)?
    Do you know what is more performant for managing access to supabase tables?

    I'm curios if having one single RLS to manage all SELECT based on each user profile (admin, manager, etc) or having separate RLS.

    I have in my user table a column with this profile type, do you recommend to do something like (SELECT profile FROM users WHERE id = auth.uid()) = "manager" or do you recommend to add at login this information in the JWT and manage the select based on the JWT select. What would be faster, selecting from JWT or from the tables?

    Do you have a better alternative?
  • mohammed1236222-1441102696173146303

    mohammed123

    0

    2 days ago

    wordpress posts
    hello
    how can i render wordpress post content in nordcraft ?
  • jehex-1440196054879309976

    Jehex

    4

    4 days ago

    Error in Main Agent
    Hello,

    Seems the AI assistant not working anymore for me, I don't get any specific errors on the console. Any solutions ?
  • knamuora-1440037482363224187

    knamuora

    1

    5 days ago

    sparkcal faq
    Hello @Max, I integrated the sparkcal package in my project though i'm currently having an issue when rendering the events, the calendar is actually considering the initial value of the variable rather than waiting till it's set after completion of the API request which of course returns empty, Is there any workaround you'd suggest once retrieving from an API?
  • uunicode-1439926205062189148

    unicodes

    20

    5 days ago

    How good do Nordcraft websites rank on Google?
    Hi there, I have the website marlume.com and I’m trying to rank with this website on Google but it doesn’t rank. All the pages you see on Google are there because I manually uploaded them. This is the sitemap: https://marlume.com/sitemap.xml and this is robots: https://marlume.com/robots.txt. The website has been online for a few months and I feel like Google is refusing to publish the website. As you will see, there are pages in the sitemap that don’t exist on Google: https://www.google.com/search?q=site%3Amarlume.com. I feel like something isn’t going well with Nordcraft for ranking. I used to build websites in Visual Studio and never had issues with ranking, always after a few days on Google all of them were present and visible and I was recommended in search after a month. Is there something I’m doing wrong or is Nordcraft? How do you guys feel about ranking on Google?
  • firdaus___-1439558591127228436

    Mr

    1

    6 days ago

    Fetch API cannot load *** due to access control checks.
    [Error] Fetch API cannot load --- due to access control checks.
    (anonymous function) (page.main.js:1:67477)
    F (page.main.js:1:67843)
    l (page.main.js:1:68013)
    x (page.main.js:1:57180)
    (anonymous function) (page.main.js:1:65402)
    forEach
    i (page.main.js:1:65396)
    (anonymous function) (page.main.js:1:67746)

    ###

    need help this issue only happend on ios mobile
  • luca_6412-1438929401101160529

    Luca_

    0

    8 days ago

    Problems with mixed content in local env
    I’m trying to build a printer UI that loads data from Xano over HTTPS and stores it locally using IndexedDB. The UI should work completely offline as a PWA with a service worker.

    The problem is: the connection to the print server is local and only supports HTTP. I also need to send HTTP requests directly to the printer to check if it’s available.

    I tried using an Nginx proxy with a self-signed certificate to bridge HTTPS → HTTP, but Chrome refused to accept the certificate. Ideally, I need a simple, stable solution that works 100% in production without browser errors.
  • knamuora-1438825391606206535

    knamuora

    3

    8 days ago

    Vanilla calendar styling
    Hey @Kamil , just wanted to ask whether there are other styling classes not listed in the documentation. If there were a location to describe what element a class specifically targets in brief would be definitely helpful as well. Thanks
  • catdeal3r-1438412575485198416

    catdeal3r

    19

    9 days ago

    Is there a way I can get the html of a project?
    I have been using nordcraft for a little while now, and I like it. Except that I can't seem to figure out how I can 'export' a project to some html files and css. One of the selling points is that its plain html and css. But its restricted to the platform, so whats the point?

    How can I get my project in plain html + css + js (if any).
  • founderlevin-1438191369180020846

    Founderlevin

    2

    10 days ago

    self-hosted project
    Hey everyone, I got a server and installed bun on it, cloned git, and made a build. But I'm not quite sure what to do next. How can I try hosting a project I made in NordCraft? Is there a guide?
  • uunicode-1438067882063040612

    unicodes

    10

    10 days ago

    Why spacing variables, aren't visible in viewport width/height?
    Should I use a different variable?
  • energetic_axolotl_08956-1437883158317109429

    ben

    14

    11 days ago

    Help Needed: Reliable Approach for Extracting Applied Styles & Persistent Image Edits for PDF Export
    Hello!

    I'm having trouble ensuring that all the correct, actively applied CSS styles from my Nordcraft-built app are consistently included when exporting pages to PDF using DocRaptor. My current JavaScript approach—collecting classes from elements and building the PDF layout based on .pdf-page containers—works in some cases but often misses certain styles or results in mismatches.

    Additionally, user-driven image adjustments (scaling/cropping via interact.js) aren’t reliably reflected in the PDF output. Despite trying many code variations (with AI tools and help from DocRaptor support), I haven’t found a robust solution.

    I'm looking for someone with deeper Nordcraft (and general web export) expertise to suggest a better way to reliably capture the real-time applied classes/styles and ensure edited images are faithfully carried over into the generated PDF. Willing to provide access and pay for your time!
  • luca.heck-1437849425643962489

    Luca Heck

    5

    11 days ago

    Implementing autosave API logic with queue-bases syncing
    Hey everyone 👋

    I’m building a frontend where users can edit “phases” and their “tickets.” Each phase can contain multiple tickets. The goal is to have an autosave workflow instead of a manual “Save changes” button.

    The problem:

    - Each ticket is created via an API that generates the real id on the backend.
    - When users create, reorder, or edit tickets (like changing text fields), I want the frontend to automatically sync these changes to the backend.
    - I’m using a low-code editor, so I can’t just drop in my own TypeScript class or debounce logic easily.

    I’m looking for advice or examples on how to implement:
    - Autosave or debounced API calls (PATCH/POST) for text inputs
    - Handling pending requests or reorder operations so the latest state is always saved (e.g. trailing debounce or “latest wins” logic)
    - How to structure this simply in the Nordcraft editor

    If anyone has done something similar — especially autosave or queue-based syncing — I’d really appreciate some guidance or a pattern I could follow 🙏

    Thanks in advance!