![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.
@flytio/int-common
Advanced tools
Common framework, utilities and ops code for Flyt integrations
A small logging library for use within flyt node integrations. Flyt Logger is a thin wraper around the winston and sends logs over UDP.
Install
yarn add @flytio/flyt-logger
Import and get an instance of FlytLogger. Preferably in the entry point of the application.
// main.js
import { FlytLogger } from '@flytio/flyt-logger';
const logger = FlytLogger.getInstance();
Before we can start sending logs we need to initialise the logger. We can pass an optional options object when we initialise. The most important option to consider is app
. This will uniquely identify logs from your application. Again this should be done within the entry point of your application and only needs to be called once for the lifetime of your application.
const options: UDPTransportOptions = {
app: 'app-name';
}
logger.init(options);
Once we have initialised we can use any of the logging methods available. Each logging method accepts a message and an optional metadata object if you wish to send any other data that you think appropiate.
// Info messages should be a simple meesage describing what is happening.
logger.info('sendCollectionOrder request started');
// Debug messages should have more context.
logger.debug(`pos response: ${JSON.stringify(responseFromPos)}`);
// Error messages should log out any errors that happen in your application.
logger.error(`order failed to send: ${JSON.stringify(error)}`);
FAQs
Common framework, utilities and ops code for Flyt integrations
We found that @flytio/int-common demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.