![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
@grahamcrackers/logger
Advanced tools
A naive logger for client side applications.
// src/logger.ts
import { createLogger, LogLevel } from "@grahamcrackers/logger";
const logger = createLogger({
// defaults to LogLevel.Log or (0)
logLevel: LogLevel.Info,
});
I wanted a logger that I could log during development and if I forget to remove a console log because of reasons it won't output critical info if building for production.
I mainly use vite for front end apps these days so this example is using that setup. If you use webpack, you can translate the environment variables to your setup.
your local set up to log everything
VITE_LOG_LEVEL=0
VITE_LOGGING_ENABLED=true;
VITE_LOG_LEVEL=3
# or disable everything
VITE_LOGGING_ENABLED=false;
// src/logger.ts
import { createLogger, LogLevel } from "@grahamcrackers/logger";
const logger = createLogger({
isEnabled
// defaults to LogLevel.Log or (0)
logLevel: LogLevel.Info,
});
FAQs
A naive logger for client side applications.
The npm package @grahamcrackers/logger receives a total of 2 weekly downloads. As such, @grahamcrackers/logger popularity was classified as not popular.
We found that @grahamcrackers/logger demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.