All Projects â†’ nfcampos â†’ await-outside

nfcampos / await-outside

Licence: MIT license
Await outside of async functions

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to await-outside

ocamline
👨🏻‍💻 Command line interface for user input
Stars: ✭ 32 (+68.42%)
Mutual labels:  repl
text-engine
A browser-based text adventure game engine and sample game
Stars: ✭ 146 (+668.42%)
Mutual labels:  repl
SwiftyContacts
A Swift library for Contacts framework.
Stars: ✭ 205 (+978.95%)
Mutual labels:  async-await
Rick-and-Morty-iOS-App
This is a sample iOS 13+ UIKit - Combine project.
Stars: ✭ 21 (+10.53%)
Mutual labels:  async-await
repl
Framework Agnostic REPL For Node.js. Used by AdonisJS
Stars: ✭ 76 (+300%)
Mutual labels:  repl
aik
Frontend Playground
Stars: ✭ 43 (+126.32%)
Mutual labels:  repl
Replay.jl
Replay your REPL instructions
Stars: ✭ 24 (+26.32%)
Mutual labels:  repl
repline
Haskeline wrapper for GHCi-like REPL interfaces
Stars: ✭ 98 (+415.79%)
Mutual labels:  repl
wxapp-boilerplate
微信小程序开发脚手架 (ES6, Redux, Immutable-js, Async/await, Promise, Reselect, Babel, ESLint, Stylelint, Gulp ... )
Stars: ✭ 35 (+84.21%)
Mutual labels:  async-await
replay-csharp
An editable C# REPL (Read Eval Print Loop) powered by Roslyn and .NET Core
Stars: ✭ 69 (+263.16%)
Mutual labels:  repl
ShenScript
Shen for JavaScript
Stars: ✭ 40 (+110.53%)
Mutual labels:  repl
malluscript
A simple,gentle,humble scripting language for mallus, based on malayalam memes.
Stars: ✭ 112 (+489.47%)
Mutual labels:  repl
pytezos
🐍 Python SDK & CLI for Tezos | Michelson REPL and testing framework
Stars: ✭ 93 (+389.47%)
Mutual labels:  repl
Clojure-Sublimed
Clojure support for Sublime Text 4
Stars: ✭ 268 (+1310.53%)
Mutual labels:  repl
clojure
Practicalli Clojure REPL Driven Development
Stars: ✭ 40 (+110.53%)
Mutual labels:  repl
snap
Snap Programming Language
Stars: ✭ 20 (+5.26%)
Mutual labels:  async-await
lambda-dti
Interpreter of the ITGL with dynamic type inference
Stars: ✭ 18 (-5.26%)
Mutual labels:  repl
Rx.Book
High level asynchronous programming with Reactive Extensions
Stars: ✭ 67 (+252.63%)
Mutual labels:  async-await
Shift
Light-weight EventKit wrapper.
Stars: ✭ 31 (+63.16%)
Mutual labels:  async-await
ReplCustoms
A database of users, posts, and comments from the ReplTalk API
Stars: ✭ 17 (-10.53%)
Mutual labels:  repl

Build Status

await-outside

A better Node REPL for asynchronous exploration

Inspired by https://github.com/princejwesley/Mancy.

From This

$ node
> const request = require('superagent')
undefined
> request.get('https://www.googleapis.com/books/v1/volumes').
... query({key: 'NOT_A_VALID_API_KEY'}).
... query({q: 'paul auster'}).
... then(r => r.body)
Promise { <pending> }
>

To This

$ await-outside
> const request = require('superagent')
undefined
> await request.get('https://www.googleapis.com/books/v1/volumes').
... query({key: 'NOT_A_VALID_API_KEY'}).
... query({q: 'paul auster'}).
... then(r => r.body)
{ kind: 'books#volumes',
  totalItems: 2342,
  items: [ ... ] }
>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].