npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@gdquest/gwee

v0.0.34

Published

Builds a project as automatically as possible, and processes html pages

Downloads

16

Readme

Godot Web Easy Export (GWEE)

Aims to make it very easy to generate an html page with a playable build of Godot, containing downloads for other Godot builds (At the moment: Windows, Linux, OSX).

Specifically, this package:

  • compiles Godot 3 and Godot 4 projects
  • packages exports in neat zips
  • renders HTML using Eta before giving it to Godot. The Eta template receives a bunch of data that can be used, including:
    • The zips downloads list
    • Information about the project (name, date, last commit, branch, etc)
    • The rendered Readme page at the project's root, with YAML frontmatter
  • uploads to itch

How to Use -- Command Line

Assuming you have an alias to node gwee.mjs:

Get help:

gwee --help

Get help on a specific command:

gwee build --help

Use gdquest, the command that is tailored for GDQuest repos, and export the windows, linux, and web builds from the project examples/g4. Passing -b beta7 is necessary because there's no way to determine that a project was built with Godot 4 beta7. It's not necessary to pass stable.

gwee gdquest examples/g4 -b beta7 -p x11,win,web
gwee gdquest examples/g3 -p x11,win,web

Same as above, but on a Godot 3 project, and using itch credentials (will automatically upload to itch)

ITCHIO_GAME=test \\
  ITCHIO_USER=xananax \\
  ITCHIO_API_KEY=oa5s9rf4gGUn3TAV2Kj5DR1sbr91244HC2o8nSO \\
  node %script% gdquest examples/g4 -b beta7 -p x11,win,web

You can use a .env file in your project root instead of passing environment variables.

How to use -- Package

This package is ESM only

There's no doc generation at the moment, but the methods are all commented.

Supported Exports:

Working:

  • Linux (x11)
  • Web (web)
  • Windows (win) (no rcedit support yet)

Untested:

  • OSX (osx)

Not working:

  • Android (android)
  • UWP (uwp)
  • IOS (ios)

How to dev

The package is written in ES6 with extensive JSDoc. It's exhaustively typed, but requires no compilation step, you can just use it.

The (runtime) packages used have each no dependencies, so the dep tree is rather shallow.