Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 1.25 KB

WEEK-09-01.md

File metadata and controls

42 lines (32 loc) · 1.25 KB

Week of 09/01/2019

1. Built MVP of vz-logger

Code: https://github.com/vizstack/vz-logger

1.1 SocketIO for real-time, multiplatform communication

Python client:

from vzlogger import connect, get_logger

with connect('http://localhost:4000'):
    logger = get_logger('main')
    logger.info('Hello, world!')
    logger.debug('Hello, world!')
    logger.warning('Hello, world!')
    logger.error('Hello, world!')

TypeScript client:

import { connect, getLogger } from 'vz-logger';

connect('http://localhost:4000');

const logger = getLogger('main')
logger.info('Hello, world!')
logger.debug('Hello, world!')
logger.warning('Hello, world!')
logger.error('Hello, world!')

disconnect();

1.2 React-based frontend with filtering, sorting & pinning

Logger Sketch Logger Screenshot

2. Add new Fragments & refine design of @vizstack/core

Interactive Demo: https://vizstack.github.io/vizstack/docs

Aesthetics v1 Aesthetics v2