Tag

package

1 views collected around this technical thread.

Code Mala Tang
Code Mala Tang
Aug 29, 2024 · Backend Development

How to Publish a Fully Production‑Ready TypeScript Package to npm

This step‑by‑step guide shows how to create, configure, test, and publish a TypeScript npm package using Git, Prettier, tsup, Vitest, GitHub Actions CI, and Changesets for versioning and release automation.

GitHub ActionsTypeScriptci
0 likes · 25 min read
How to Publish a Fully Production‑Ready TypeScript Package to npm
Test Development Learning Exchange
Test Development Learning Exchange
Jun 12, 2024 · Fundamentals

Understanding the Role of __init__.py in Python Packages

The article explains how the __init__.py file marks a directory as a Python package, enables package initialization, controls namespace exposure, defines package‑level variables and metadata, supports dynamic loading, performance optimizations, and can serve as an entry point, while noting changes introduced in Python 3.3 and PEP 420.

Modulesinit.pypackage
0 likes · 5 min read
Understanding the Role of __init__.py in Python Packages
Python Programming Learning Circle
Python Programming Learning Circle
Nov 20, 2021 · Fundamentals

Understanding Implicit and Explicit Relative Imports in Python Packages

This article explains Python's implicit and explicit relative import mechanisms, demonstrates directory structures, shows how to use __init__.py, and provides practical code examples illustrating import statements, common pitfalls, and best practices for managing package imports in larger projects.

Moduleexplicit-importimplicit-import
0 likes · 8 min read
Understanding Implicit and Explicit Relative Imports in Python Packages
TAL Education Technology
TAL Education Technology
Apr 1, 2021 · Mobile Development

Creating, Publishing, and Using Flutter Packages and Plugins

This article explains what Flutter packages and plugins are, how to create them via IDE or command line, the required file structure, how to publish them to pub.dev, private registries or Git, and how to add them as dependencies in a Flutter project while also covering common troubleshooting steps.

DartFlutterMobile Development
0 likes · 9 min read
Creating, Publishing, and Using Flutter Packages and Plugins
Python Programming Learning Circle
Python Programming Learning Circle
Dec 16, 2020 · Fundamentals

Understanding Python Variable Arguments, Lambdas, Packages, Generators, and Decorators

This article explains Python's variable‑length arguments (*args, **kwargs), anonymous lambda functions, package creation with __init__.py, memory‑efficient generators using yield, and powerful decorators—including practical code examples for each concept.

Generatordecoratorlambda
0 likes · 11 min read
Understanding Python Variable Arguments, Lambdas, Packages, Generators, and Decorators
php中文网 Courses
php中文网 Courses
Dec 16, 2020 · Backend Development

Integrating Emoji Support in Laravel Applications with Laravel Emoji Package

This guide explains how to add Unicode emoji rendering to Laravel projects by installing the Laravel Emoji package, configuring its service provider and alias, and using its facade methods to retrieve emojis by alias, name, or Unicode code point.

LaravelPHPUnicode
0 likes · 3 min read
Integrating Emoji Support in Laravel Applications with Laravel Emoji Package
Python Programming Learning Circle
Python Programming Learning Circle
Jun 29, 2020 · Fundamentals

Understanding Python import: absolute vs. relative imports and common pitfalls

This article explains Python's import system, covering absolute and relative import syntax, package structure, execution contexts, and typical errors, while providing clear code examples and practical guidelines for correctly organizing and running modules.

@ImportModulePEP 328
0 likes · 11 min read
Understanding Python import: absolute vs. relative imports and common pitfalls