All Projects → yewstack → web_logger

yewstack / web_logger

Licence: other
Rust Logger for Web Browsers

Programming Languages

rust
11053 projects

Labels

Projects that are alternatives of or similar to web logger

wasp
🐝 Wasp : Wasm programming (language)
Stars: ✭ 93 (+389.47%)
Mutual labels:  wasm
rabin-wasm
Rabin fingerprinting implemented in WASM
Stars: ✭ 26 (+36.84%)
Mutual labels:  wasm
rust-wasm-loader
Webpack loader for Rust
Stars: ✭ 81 (+326.32%)
Mutual labels:  wasm
bounce
The uncomplicated Yew State management library
Stars: ✭ 43 (+126.32%)
Mutual labels:  wasm
wasm-adventure
My adventure into the marvelous world of Web Assembly
Stars: ✭ 49 (+157.89%)
Mutual labels:  wasm
jupiter
Wasm smart contract networks powered by Substrate FRAME Contracts pallet in Polkadot ecosystem.
Stars: ✭ 49 (+157.89%)
Mutual labels:  wasm
wsPlayer
wsPlayer is a web video player based on WebSocket-fmp4.
Stars: ✭ 88 (+363.16%)
Mutual labels:  wasm
swaplink
Site to perform peer to peer atomic swaps on the Algorand blockchain
Stars: ✭ 15 (-21.05%)
Mutual labels:  wasm
matchbox
Painless peer-to-peer WebRTC networking for rust wasm
Stars: ✭ 276 (+1352.63%)
Mutual labels:  wasm
WebAssembly-in-Action
Source code for the book "WebAssembly in Action" (https://www.manning.com/books/webassembly-in-action)
Stars: ✭ 44 (+131.58%)
Mutual labels:  wasm
fastlike
Run Fastly Compute@Edge Wasm programs on your own computer, powered by wasmtime
Stars: ✭ 36 (+89.47%)
Mutual labels:  wasm
tiny-secp256k1
A tiny secp256k1 native/JS wrapper
Stars: ✭ 41 (+115.79%)
Mutual labels:  wasm
pigmnts
🎨 Color palette generator from an image using WebAssesmbly and Rust
Stars: ✭ 38 (+100%)
Mutual labels:  wasm
rotation master
Provide conversion between the major representations of 3D rotation and visualize the orientation of a rigid body
Stars: ✭ 157 (+726.32%)
Mutual labels:  wasm
webp-wasm
Webp image convertor (webassembly, works offline in browser)
Stars: ✭ 18 (-5.26%)
Mutual labels:  wasm
parametric surfaces
Parametric surfaces drawn using the Rust + WASM toolchain with WebGL, React, and TypeScript.
Stars: ✭ 43 (+126.32%)
Mutual labels:  wasm
epick
Color picker for creating harmonic color palettes that works on Linux, Windows, macOS and web.
Stars: ✭ 89 (+368.42%)
Mutual labels:  wasm
n2t-wasm
Emulator for the Hack CPU.
Stars: ✭ 41 (+115.79%)
Mutual labels:  wasm
wasm.cljc
Spec compliant WebAssembly compiler, decompiler, and generator
Stars: ✭ 178 (+836.84%)
Mutual labels:  wasm
AheuiJIT
Aheui JIT compiler for PC and web
Stars: ✭ 27 (+42.11%)
Mutual labels:  wasm

web_logger

Implements a logger that can be used in web browsers.

Usage

In libraries

Not required. Libraries should use the log crate instead.

In executables

It must be added along with log to the project dependencies:

[dependencies]
log = "0.4"
web_logger = "0.2"

web_logger must be initialized as early as possible in the project. After it's initialized, you can use the log macros to do actual logging.

#[macro_use]
extern crate log;
extern crate web_logger;

fn main() {
    web_logger::init();

    info!("starting up");

    // ...
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].