pkg
monorepo of multiple packages/modules/libraries for multiple languages:
- golang
- ts/react
planning to add my Unity Engine packages/plugins here as well soon.
To install a specific package from the TypeScript modules, you can use npm
with the specific module you want to install. Here's how:
- Ensure that you have
Node.js
,npm
& especiallytiged
(tiged is an npm package allows you to install specific subdirectory in a whole project) installed on your machine. - Use the following command to install a specific module. For example, to install the
admin
module:tiged github.com/kahlery/pkg/ts/react/modules/core
To use a Go module, you can install it using go get. For example:
Run the go get command with the package you want to install. For example, to install the auth package:
go get github.com/kahlery/pkg/go/auth
-
go/auth
: Authentication utilities (JWT, hashing, etc.) -
go/aws
: AWS S3 service utilities -
go/env
: Environment-related utilities -
go/image
: Image processing utilities -
go/log
: Logging middleware and utilities
-
ts/react/admin
: Admin panel components and utilities -
ts/react/auth
: Authentication components and utilities -
ts/react/common
: Common utilities shared across modules -
ts/react/core
: Core utilities shared across modules -
ts/react/layout
: Layout components for your React app -
ts/react/static
: Static components like images, CSS, etc.