Skip to content
This repository has been archived by the owner on Apr 8, 2023. It is now read-only.

fox-archives/typescript-runtime-transpiler

Repository files navigation

babel-deno

Summary

Includes a Babel preset that transpiles a subset of Node APIs to Deno APIs. This is an experiment and it won't work for most programs.

Example

// input
import fs from 'fs'

fs.existsSync(path)
// output
import * as denoFs from 'https://deno.land/x/std@0.53.0/fs/mod.ts'

denoFs.existsSync(path)

Progress

Right now working on transpiling fs and process stuff

About

🦕Transpile Node APIs to Deno 😎

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published