Git Product home page Git Product logo

Comments (4)

Angelmmiguel avatar Angelmmiguel commented on June 6, 2024

This is a relevant feature for moderm websites. This will allow to build and publish complete websites without having to inject CSS, HTML or JS static code into the wasm compiled binary.

In the end, we will implement this by using a third approach: create a static folder to add static file inside. In this way, we don't need to add any extra configuration as it will work out of the box.

The static prefix won't be added to the files. Based on this structure:

.
├── docs
│   ├── index.js
│   └── static
│       └── intro.jpg
├── index.js
└── static
    └── robots.txt

Wasm Workers Server will init the following routes:

Handlers:
  - /
  - /docs

Static assets:
  - /robots.txt
  - /docs/intro.jpg

This convert static into a reserved word, so you cannot create static folders to host handlers. A static/index.js file will be managed as "static" file and not as a handler.

from wasm-workers-server.

Angelmmiguel avatar Angelmmiguel commented on June 6, 2024

After revisiting it, we plan to allow only a root static folder for the initial version. Every application is recommended to run on its own wws process. Having multiple static folders inside a project doesn't provide many advantages as they can be also coded as a subfolder in the initial folder:

.
├── docs
│   └── index.js
├── index.js
└── static
    └── docs
       └── intro.jpg
    └── robots.txt

Will be the same as:

.
├── docs
│   ├── index.js
│   └── static
│       └── intro.jpg
├── index.js
└── static
    └── robots.txt

To keep the usage simple, we will focus on the single static folder approach.

from wasm-workers-server.

Angelmmiguel avatar Angelmmiguel commented on June 6, 2024

Instead of static, we will use public as it's a common convention in web frameworks like NextJS, Astro, Remix, Ruby on Rails.

from wasm-workers-server.

Angelmmiguel avatar Angelmmiguel commented on June 6, 2024

As part of this feature, we should also support static .html files. In this way, we can create static sites and add dynamic features using wasm modules.

from wasm-workers-server.

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.