Giter Club home page Giter Club logo

Comments (2)

kevinkassimo avatar kevinkassimo commented on August 24, 2024

@clinyong
denoMain(); comes from the snapshot:
Snapshot creator
In BUILD.gn, this snapshot creator is invoked against bundle/main.js, which is a bundle for all the compiled TS files:

# Generates $target_gen_dir/snapshot_deno.bin
snapshot("snapshot_deno") {
  source_root = "$target_gen_dir/bundle/main.js"
  deps = [
    ":main_bundle",
  ]
}

When creating the new Isolate in Rust, the generated snapshot_deno.bin is loaded to v8. See functions in libdeno/api.cc and src/isolate_init.rs for details.
Snapshot is essentially a serialization of what is on the V8 heap. Once loaded, V8 would restore to the state when the snapshot is taken: the moment bundle/main.js has finished execute.

This is why denoMain() exists on V8 heap

from guide.

clinyong avatar clinyong commented on August 24, 2024

@kevinkassimo Thanks so much~

from guide.

Related Issues (4)

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.