Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement Deno.* native functions #95

Open
Arshia001 opened this issue Nov 4, 2024 · 0 comments
Open

Implement Deno.* native functions #95

Arshia001 opened this issue Nov 4, 2024 · 0 comments

Comments

@Arshia001
Copy link
Member

Arshia001 commented Nov 4, 2024

These functions are needed for the deno std node.js polyfills to work correctly. The code for these is currently in the feat/more-deno branch.

This is a full list of all the functions, along with the implementation status of each one:

  • Deno.addSignalListener
  • Deno.args
  • Deno.bench
  • Deno.build.arch
  • Deno.build.os
  • Deno.chdir
  • Deno.chmod
  • Deno.chmodSync
  • Deno.chown
  • Deno.chownSync
  • Deno.close
  • Deno.Command;
  • Deno.Command().outputSync
  • Deno.Conn
  • Deno.connect
  • Deno.ConnectOptions
  • Deno.consoleSize
  • Deno.copyFile
  • Deno.copyFileSync
  • Deno.core.evalContext
  • Deno.core.getPromiseDetails
  • Deno.core.hasTickScheduled
  • Deno.core.runMicrotasks
  • Deno.core.setHasTickScheduled
  • Deno.core.setNextTickCallback
  • Deno.core.setPromiseHooks
  • Deno.create
  • Deno.createHttpClient
  • Deno.customInspect
  • Deno.cwd
  • Deno.DatagramConn.prototype.send
  • Deno.env.get,
  • Deno.env.set
  • Deno.env.toObject
  • Deno.errors.AddrInUse
  • Deno.errors.AddrNotAvailable
  • Deno.errors.AlreadyExists
  • Deno.errors.BadResource
  • Deno.errors.BrokenPipe
  • Deno.errors.ConnectionAborted
  • Deno.errors.ConnectionReset
  • Deno.errors.Http
  • Deno.errors.Interrupted
  • Deno.errors.InvalidData
  • Deno.errors.NotConnected
  • Deno.errors.NotFound
  • Deno.errors.NotSupported
  • Deno.errors.PermissionDenied
  • Deno.errors.UnexpectedEof
  • Deno.execPath
  • Deno.exit
  • Deno.fdatasync
  • Deno.fdatasyncSync
  • Deno.FsEvent
  • Deno.FsFile
  • Deno.fstat
  • Deno.fstatSync
  • Deno.fsync
  • Deno.fsyncSync
  • Deno.ftruncate
  • Deno.ftruncateSync
  • Deno.futime
  • Deno.futimeSync
  • Deno.gid
  • Deno.hostname
  • Deno.inspect
  • Deno.internal
  • Deno.isatty
  • Deno.kill
  • Deno.link
  • Deno.linkSync
  • Deno.listen
  • Deno.listenDatagram
  • Deno.ListenOptions
  • Deno.listenTls
  • Deno.loadavg
  • Deno.lstat
  • Deno.lstatSync
  • Deno.mainModule
  • Deno.memoryUsage
  • Deno.metrics
  • Deno.mkdir
  • Deno.mkdirSync
  • Deno.networkInterfaces
  • Deno.noColor
  • Deno.open
  • Deno.openSync
  • Deno.osRelease
  • Deno.osUptime;
  • Deno.permissions
  • Deno.pid
  • Deno.read
  • Deno.readDir
  • Deno.readDirSync
  • Deno.readFile
  • Deno.readFileSync
  • Deno.readLink
  • Deno.readLinkSync
  • Deno.readSync
  • Deno.readTextFile
  • Deno.realPath
  • Deno.realPathSync
  • Deno.refTimer
  • Deno.remove
  • Deno.removeSignalListener
  • Deno.removeSync
  • Deno.rename
  • Deno.renameSync
  • Deno.resolveDns
  • Deno.seek
  • Deno.SeekMode.Current
  • Deno.SeekMode.Start
  • Deno.seekSync
  • Deno.serve;
  • Deno.serveHttp
  • Deno.startTls
  • Deno.stat
  • Deno.statSync
  • Deno.std.cookieMap.headersInit
  • Deno.stderr
  • Deno.stdin
  • Deno.stdin.read
  • Deno.stdin.close
  • Deno.stdout
  • Deno.stdout.write
  • Deno.stdout.writeSync
  • Deno.symlink
  • Deno.symlinkSync
  • Deno.systemMemoryInfo
  • Deno.test
  • Deno.TestDefinition
  • Deno.TlsConn
  • Deno.truncate
  • Deno.truncateSync
  • Deno.uid
  • Deno.umask
  • Deno.unrefTimer
  • Deno.upgradeHttpRaw
  • Deno.utime
  • Deno.utimeSync
  • Deno.version
  • Deno.watchFs
  • Deno.write
  • Deno.writeFile
  • Deno.writeFileSync
  • Deno.writeSync
  • Deno.writeTextFileSync
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant