@lambda-group/axum-js
TypeScript icon, indicating that this package has built-in type declarations

0.2.0 • Public • Published
axum-js

Tests Status Deploy Status

NPM version License: MIT Contributions welcome Twitter Follow

axum-js is a TypeScript/JavaScript wrapper around the Rust Axum crate, brought to you via Napi-rs. This initiative seeks to imbue the JavaScript ecosystem with the resiliency and efficiency inherent to Axum.

Initiated during Hacktoberfest 2023 by Daniel Boll, this project now thrives under the stewardship of the @lambda-group.

🎯 Supported Platforms

  • darwin-x64
  • linux-x64-gnu
  • win32-x64-msvc

🚀 Installation

npm install @lambda-group/axum-js

🛠 Usage

import { axum } from "@lambda-group/axum-js";

const app = axum();
const port = 3000;

app.get('/', (req, res) => {
  res.send('Hello World!')
});

app.listen(port, () => {
  console.log(`Server is humming on port ${port}`)
});

🤝 Contributing

We're always on the lookout for contributions. Navigate to CONTRIBUTING.md for the scoop on how you can join the crew.

📜 License

Distributed under the MIT License.

🙏 Acknowledgements

  • Kudos to the Axum and Napi-rs communities for laying the groundwork that made axum-js feasible.
  • A world of thanks to every contributor to axum-js, your input, no matter the magnitude, propels us forward.

Idealized with ❤️ by Daniel Boll

Package Sidebar

Install

npm i @lambda-group/axum-js

Weekly Downloads

1

Version

0.2.0

License

MIT

Unpacked Size

34.2 kB

Total Files

18

Last publish

Collaborators

  • daniel-boll