Skip to main content

Posts

Showing posts with the label visual

Run VSCode in the Browser

Coder.com has open sourced its cloud-server component which allows VSCode to run on a remote server fully accessible through the browser.  What is the advantage of that? Code on your Chromebook, tablet, and laptop with a consistent dev environment. Take advantage of large cloud servers to speed up tests, compilations, downloads, and more. Preserve battery life when you're on the go as all intensive computation runs on your server, plus you're no longer running excess instances of Chrome. Code-server is available as a single binary or Docker image and can be self hosted  locally , which of course beats the purpose of portability, or on remote servers such as a VPSs' on  Digital Ocean full article on i-programmer

ReactProto, Rapid Prototyping In React

ReactProto is a rapid application prototyping tool that bridges the gap between developers and designers. Designers hand over their static mockups. which developers feed into ReactProto to generate the corresponding boilerplate React components. It's that aspect of Visual Design that can speed up development through generating code, especially efficient when having to tackle hierarchies of nested components. In contrast to coding them by hand, when using ReactProto the code generator consumes static mockups and emits React components. It's use is simple and can be summarized as: full article on i-programmer