vibe-stocks
Version:
Terminal-based stock market viewer with real-time data streaming
63 lines (47 loc) • 1.05 kB
Markdown
# Deploy vibe-stocks to NPM
## Quick Deploy (Copy & Paste)
```bash
cd /Users/shawncarpenter/SAPRO-FRONTEND/vibe-stocks && npm login && npm publish --access public
```
## Step by Step
1. **Navigate to package directory:**
```bash
cd /Users/shawncarpenter/SAPRO-FRONTEND/vibe-stocks
```
2. **Login to npm:**
```bash
npm login
```
3. **Publish the package:**
```bash
npm publish --access public
```
## Alternative: Use Deploy Script
```bash
cd /Users/shawncarpenter/SAPRO-FRONTEND/vibe-stocks
./deploy.sh
```
## After Publishing
Test the published package:
```bash
npx vibe-stocks@latest stream AAPL
```
View on npm:
https://www.npmjs.com/package/vibe-stocks
## Package Info
- **Name**: vibe-stocks
- **Version**: 1.0.0
- **Size**: 9.1 kB
- **Dependencies**: 8
- **Commands**: stream, market, quote, chart
## Usage Examples
```bash
# Stream real-time quotes
npx vibe-stocks stream AAPL MSFT GOOGL
# Market overview
npx vibe-stocks market
# Stock quote
npx vibe-stocks quote TSLA
# Price chart
npx vibe-stocks chart NVDA --period 1y
```