All Projects → robtweed → Qewd

robtweed / Qewd

Quick and Easy Web Development

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Qewd

Apicache
Simple API-caching middleware for Express/Node.
Stars: ✭ 957 (+802.83%)
Mutual labels:  redis, express
Aclify
🔒 Node Access Control Lists (ACL).
Stars: ✭ 49 (-53.77%)
Mutual labels:  redis, express
Express Security
nodejs + express security and performance boilerplate.
Stars: ✭ 37 (-65.09%)
Mutual labels:  redis, express
Re Verb
speaker diarization system using an LSTM
Stars: ✭ 27 (-74.53%)
Mutual labels:  redis, express
Laravel Blog
Laravel 8.0 blog application with Vue.js, Homestead, Horizon, Telescope and Pusher
Stars: ✭ 1,248 (+1077.36%)
Mutual labels:  redis, websockets
Docker Compose Nodejs Examples
Finally some real world examples on getting started with Docker Compose and Nodejs
Stars: ✭ 944 (+790.57%)
Mutual labels:  redis, express
Kuzzle
Open-source Back-end, self-hostable & ready to use - Real-time, storage, advanced search - Web, Apps, Mobile, IoT -
Stars: ✭ 991 (+834.91%)
Mutual labels:  redis, websockets
Graphql Ws
Coherent, zero-dependency, lazy, simple, GraphQL over WebSocket Protocol compliant server and client.
Stars: ✭ 398 (+275.47%)
Mutual labels:  express, websockets
Muster
A universal data layer for components and services
Stars: ✭ 59 (-44.34%)
Mutual labels:  express, websockets
Django Channels React Multiplayer
turn based strategy game using django channels, redux, and react hooks
Stars: ✭ 52 (-50.94%)
Mutual labels:  redis, websockets
M Mall Admin
🐶 微信小程序-小商城后台(基于 Node.js、MongoDB、Redis 开发的系统...)
Stars: ✭ 895 (+744.34%)
Mutual labels:  redis, express
Advanced Redux
A messenger service built with Redux
Stars: ✭ 96 (-9.43%)
Mutual labels:  express, websockets
Oneblog
👽 OneBlog,一个简洁美观、功能强大并且自适应的Java博客
Stars: ✭ 678 (+539.62%)
Mutual labels:  redis, websockets
Amphora
Middleware for Express that composes components into renderable pages
Stars: ✭ 29 (-72.64%)
Mutual labels:  redis, express
Node Express Mongodb Jwt Rest Api Skeleton
This is a basic API REST skeleton written on JavaScript using async/await. Great for building a starter web API for your front-end (Android, iOS, Vue, react, angular, or anything that can consume an API). Demo of frontend in VueJS here: https://github.com/davellanedam/vue-skeleton-mvp
Stars: ✭ 603 (+468.87%)
Mutual labels:  redis, express
Gympoint Api
Rest API of a gym management application - built with Express, Postgres, Redis, and Nodemailer.
Stars: ✭ 39 (-63.21%)
Mutual labels:  redis, express
Ssm
💕 build SSM from 0 👉🏽👉🏽 distributed micro service.
Stars: ✭ 3,383 (+3091.51%)
Mutual labels:  redis, websockets
Node Tutorial
☺️Some of the node tutorial -《Node学习笔记》
Stars: ✭ 364 (+243.4%)
Mutual labels:  redis, express
Socketshark
A WebSocket message router based on Python/Redis/asyncio
Stars: ✭ 51 (-51.89%)
Mutual labels:  redis, websockets
Chat.io
A Real Time Chat Application built using Node.js, Express, Mongoose, Socket.io, Passport, & Redis.
Stars: ✭ 1,325 (+1150%)
Mutual labels:  redis, express

qewd: Quick and Easy Web Developer

Rob Tweed [email protected]
24 February 2016, M/Gateway Developments Ltd http://www.mgateway.com

Twitter: @rtweed

Google Group for discussions, support, advice etc: http://groups.google.co.uk/group/enterprise-web-developer-community

Thanks to Ward De Backer for debugging assistance and functionality suggestions

What is QEWD?

In summary: QEWD is a Node.js-based platform for developing and running both interactive WebSocket-based applications and REST APIs. QEWD can run as either a monolithic back-end or as a set of MicroServices.

QEWD uses a unique architecture that prevents CPU-intensive or long-running APIs bringing a Node.js system to its knees, and includes QEWD-JSdb, a powerful high-performance, tightly-integrated multi-model database which, uniquely, presents your data as persistent JavaScript Objects.

Try it out

The quickest way to try out QEWD is using the pre-built Docker version.

docker pull rtweed/qewd-server

There's also a Raspberry Pi version

docker pull rtweed/qewd-server-rpi

Create three files within a folder of your choice (eg ~/myQEWDApp), using the sub-folder structure shown below:

    ~/myQEWDApp
        |
        |_ configuration
        |            |
        |            |_ config.json
        |            |
        |            |_ routes.json
        |
        |_ apis
        |    |
        |    |_ helloworld
        |            |
        |            |_ index.js

config.json

  {
    "qewd_up": true
  }

routes.json

  [
    {
      "uri": "/api/helloworld",
      "method": "GET",
      "handler": "helloworld"
    }
  ]

index.js

  module.exports = function(args, finished) {
    finished({
      hello: 'world'
    });
  };

Fire up the QEWD Docker instance:

docker run -it --name qewdup --rm -p 3000:8080 -v ~/myQEWDApp:/opt/qewd/mapped rtweed/qewd-server

or on a Raspberry Pi:

docker run -it --name qewdup --rm -p 3000:8080 -v ~/myQEWDApp:/opt/qewd/mapped rtweed/qewd-server-rpi

Try out your REST API:

http://{{host-ip-address}}:3000/api/helloworld

eg:

http://192.168.1.100:3000/api/helloworld

Further Reading

Baseline QEWD Environment, with Tutorials on devloping REST APIs and Interactive WebSocket-based Applications.

Installing and using QEWD with a native installation of YottaDB

Installing and using QEWD with a networked connection to IRIS

Getting Started with QEWD using QEWD-Up

Information on QEWD-JSdb, the multi-model database that is integrated with QEWD. This is a unique, ground-breaking database abstraction which provides you with on-disk, persistent JavaScript Objects with which you directly interact via JavaScript.

License

Copyright (c) 2016-19 M/Gateway Developments Ltd,
Redhill, Surrey UK.
All rights reserved.

http://www.mgateway.com
Email: [email protected]

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0                           

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and
limitations under the License.

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].