New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@devlander/rawstack-core

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@devlander/rawstack-core

Core API connector package with shared business logic

latest
npmnpm
Version
1.1.0
Version published
Maintainers
1
Created
Source

@devlander/rawstack-core

Core API connector package with shared business logic for the RawStack platform. This package contains all the shared functionality that works across all platforms.

⚠️ Private Package

This is a private package that is not published to npm. It's designed for internal use within the RawStack development workspace.

Features

  • API Service Manager - Centralized API management with service discovery
  • Comprehensive Endpoint Services - All API endpoint implementations (v1 and v2)
  • Complete Type Definitions - Full TypeScript types and interfaces
  • Utility Functions - Shared utility functions and helpers
  • Storage Abstractions - Platform-agnostic storage interfaces
  • Multiple Build Targets - CommonJS, ES Modules, and TypeScript declarations

Project Status

Build System: Working (Rollup + TypeScript)
Tests: 148/148 tests passing
TypeScript: ES2022 target, no type errors
Examples: Working integration examples
Git: Repository synchronized

Installation

Since this is a private package, it should be used as a local dependency in your workspace:

# In your project's package.json, reference it locally:
"dependencies": {
  "@devlander/rawstack-core": "file:../core"
}

Usage

import { ApiServiceManager } from '@devlander/rawstack-core'

const apiManager = new ApiServiceManager({
  baseUrl: 'https://api.therawoutdoors.com',
  tokenKey: 'auth-token',
  keyIdentifier: 'test-key',
  saveToStorage: (key, value) => { /* your storage implementation */ },
  getFromStorage: (key) => { /* your storage implementation */ },
  removeFromStorage: (key) => { /* your storage implementation */ }
})

API Reference

ApiServiceManager

The main class for managing API services and endpoints.

Available Services

  • userServices - User management endpoints
  • videoServices - Video content endpoints (v1, v2, enhanced)
  • producerServices - Producer management endpoints
  • searchServices - Search functionality (v1, v2)
  • authServicesV2 - Authentication endpoints
  • gearServices - Gear and equipment endpoints
  • stripeServices - Payment and subscription endpoints
  • galleryServices - Gallery and media endpoints
  • And many more...

Development

# Install dependencies
npm install

# Run tests
npm test                    # Core tests
npm run test:examples      # Example tests
npm run test:all          # All tests

# Build the package
npm run build             # Build CJS, ESM, and types
npm run clean            # Clean build artifacts

# Type checking
npm run type-check       # TypeScript validation

Build Output

The build process generates:

  • dist/cjs/ - CommonJS modules
  • dist/esm/ - ES Modules
  • dist/types/ - TypeScript declaration files

License

ISC

Keywords

api

FAQs

Package last updated on 01 Sep 2025

Did you know?

Socket

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.

Install

Related posts