
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
atom-logger
Advanced tools
Reusable logging library for Atom packages.
Install the module with: npm install atom-logger --save
Where my-package
is your package name (settings namespace):
Logger = require "atom-logger"
# Inside your Atom package's class
logger = new Logger atom.config, "my-package"
Atom Logger acts as a layer on top of Winston. See the Winston documentation for more information.
Logger = require "atom-logger"
class MyPackage
activate: () ->
# Setup your Logger
@logger = new Logger atom.config, "my-package"
# Try logging with Winston!
@logger.log 'info', "This is the message!", {"so":"meta"}
Use Biscotto.
# Install CLI Globally
npm install -g biscotto
# Build documentation
biscotto
# Generated Documentation is in doc/ directory
See CHANGELOG.md.
Copyright (c) 2014 Glavin Wiechert.
Licensed under the MIT license.
FAQs
Reusable logging library for Atom packages.
We found that atom-logger 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.