Code Monkey home page Code Monkey logo

Comments (8)

pomber avatar pomber commented on July 28, 2024

We could add a couple of functions to the highlight config:

type Config = { 
  loadRawGrammar: (lang: {...}) => Promise<IRawGrammar>
  loadRawTheme: (name: string) => Promise<RawTheme>
};

But I'm not sure it will solve your use case, can you give me a more concrete example of your first two points?


For the Next.js case, would it make sense to add a good revalidate default in Lighter?

Also, isn't Next.js default to cache the fetch forever? Or does it need { next: { revalidate: false } }?

from lighter.

tom-sherman avatar tom-sherman commented on July 28, 2024

can you give me a more concrete example of your first two points?

Test environments are a common one, also deno without requiring permissions. In general syntax highlighting is a pure function, it's strange to me to require a network call without the ability to swap this out.

Additionally this would allow for loading arbitrary themes and grammars not found in the standard set.

For the Next.js case, would it make sense to add a good revalidate default in Lighter?

I'd advise strongly against that. revalidate is a cost-incurring option, a library shouldn't make a default choice that incurs extra costs IMO.

Also, isn't Next.js default to cache the fetch forever?

That's correct, but this optimisation is skipped when setting export const revalidate = N on the route segment - in this case the grammars and themes will be refetched every N seconds - that's what was happening in code-hike/bright#21

from lighter.

pomber avatar pomber commented on July 28, 2024

If I add { next: { revalidate: false } } to the fetchs in lighter, that shouldn't incur in extra costs, right?

from lighter.

tom-sherman avatar tom-sherman commented on July 28, 2024

Apologies I misread. As far as I'm aware that configuration is a complete no-op. It's equivalent to not passing revalidate to fetch at all.

from lighter.

pomber avatar pomber commented on July 28, 2024

Apologies I misread. As far as I'm aware that configuration is a complete no-op. It's equivalent to not passing revalidate to fetch at all.

Wouldn't the revalidate: false on fetch override the revalidate: N on the page? So when the page revalidates the fetch doesn't. That should fix code-hike/bright#21.

I'm just asking, I expect it to work like that but I have no idea.

from lighter.

wesbos avatar wesbos commented on July 28, 2024

I found out while trying to present in front of a 1800 person conference that this package loads all the grammers from remote URLs 😆

Lucky I just had to turn the wifi on and it fixed itself, but I would love to be able to load all these grammars locally. Or at least a web worker to cache them?

from lighter.

pomber avatar pomber commented on July 28, 2024

I found out while trying to present in front of a 1800 person conference that this package loads all the grammers from remote URLs 😆

Ups, sorry about that.

How are you using it? (any bundler? framework? directly from the browser?) Lighter tries to load the grammars from the file system (node modules) first, and only goes to the network if that fails.

from lighter.

tom-sherman avatar tom-sherman commented on July 28, 2024

Wouldn't the revalidate: false on fetch override the revalidate: N on the page?

AFAIA no. The page value takes precedence.

from lighter.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.