Monday, April 22, 2019

CSS: Solar CSSystem

Solar CSSystem
See the Pen Solar CSSystem by Rob DiMarzo (@robdimarzo) on CodePen.

React + TypeScript


Microsoft/TypeScript-React-Starter: A starter template for TypeScript and React with a detailed README describing how to use the two together. @ GitHub

 quick start guide will teach you how to wire up TypeScript with React

"The react-scripts-ts package is deprecated. TypeScript is now supported natively in Create React App. You can use the --typescript option instead when generating your app to include TypeScript support."
npm install -g create-react-app

create-react-app my-app --typescript

Ts.ED: TypeScript Web Server Framework

Ts.ED Provides TypeScript Framework Leveraging Express and Decorators

"Ts.ED provides a server-side TypeScript framework on top of Node.js and Express. The framework provides classes and decorators to simplify common server-side patterns, and offers integration with many other projects including TypeORM, Swagger, GraphQL, AJV, Passport.js, and Socket.io, among others.

Ts.ED provides controllers using the @Controller decorator, each of which maps to Express' routing system. Similarly, decorators get provided for common patterns including requests, sessions, posts, middleware, server settings, and services.

To learn more about creating applications with Ts.ED, read the getting started with Ts.ED documentation and Ts.ED examples.

Ts.ED is open source software available under the MIT license. Contributions and feedback are encouraged via the Ts.ED GitHub project and should follow the Ts.ED contribution guidelines."