Showing 373 open source projects for "all-in-one"

View related business solutions
  • Find out just how much your login box can do for your customer | Auth0 Icon
    Find out just how much your login box can do for your customer | Auth0

    With over 53 social login options, you can fast-track the signup and login experience for users.

    From improving customer experience through seamless sign-on to making MFA as easy as a click of a button – your login box must find the right balance between user convenience, privacy and security.
  • ConnectWise Cybersecurity Management for MSPs Icon
    ConnectWise Cybersecurity Management for MSPs

    Software and support solutions to protect your clients’ critical business assets

    ConnectWise SIEM (formerly Perch) offers threat detection and response backed by an in-house Security Operations Center (SOC). Defend against business email compromise, account takeovers, and see beyond your network traffic. Our team of threat analysts does all the tedium for you, eliminating the noise and sending only identified and verified treats to action on. Built with multi-tenancy, ConnectWise SIEM helps you keep clients safe with the best threat intel on the market.
  • 1
    LaravelS

    LaravelS

    LaravelS is an out-of-the-box adapter between Laravel/Lumen and Swoole

    LaravelS is an out-of-the-box adapter between Laravel/Lumen and Swoole. LaravelS uses Swoole's Synchronous IO mode, the larger the worker_num setting, the better the concurrency performance, but it will cause more memory usage and process switching overhead. If one request takes 100ms, in order to provide 1000QPS concurrency, at least 100 Worker processes need to be configured. Create WebSocket Handler class, and implement interface WebSocketHandlerInterface. The instant is automatically...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 2
    cookie

    cookie

    HTTP server cookie parsing and serialization

    Basic HTTP cookie parser and serializer for HTTP servers. This is a Node.js module available through the npm registry. Installation is done using the npm install command. Parse an HTTP Cookie header string and return an object of all cookie name-value pairs. The str argument is the string representing a Cookie header value and options is an optional object containing additional parsing options. Specifies a function that will be used to decode a cookie's value. Since the value of a cookie has...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 3
    VCR.py

    VCR.py

    Automatically mock your HTTP interactions to simplify testing

    Automatically mock your HTTP interactions to simplify and speed up testing. VCR.py simplifies and speeds up tests that make HTTP requests. The first time you run code that is inside a VCR.py context manager or decorated function, VCR.py records all HTTP interactions that take place through the libraries it supports and serializes and writes them to a flat file (in yaml format by default). This flat file is called a cassette. When the relevant piece of code is executed again, VCR.py will read...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 4
    Adblock FastOwnTracks Recorder

    Adblock FastOwnTracks Recorder

    Store and access data published by OwnTracks apps

    ... of formats. We developed the Recorder as a one-stop solution to storing location data published by our OwnTracks apps (iOS and Android) and retrieving this data. Our previous offerings (m2s, o2s/Pista) also work of course, but we believe the Recorder is best suited to most environments.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Simplify Purchasing For Your Business Icon
    Simplify Purchasing For Your Business

    Manage what you buy and how you buy it with Order.co, so you have control over your time and money spent.

    Simplify every aspect of buying for your business in Order.co. From sourcing products to scaling purchasing across locations to automating your AP and approvals workstreams, Order.co is the platform of choice for growing businesses.
  • 5
    Laravel Webhook Server

    Laravel Webhook Server

    Send webhooks from Laravel apps

    A webhook is a mechanism where an application can notify another application that something has happened. Technically, the application sends an HTTP request to that other application. In this blog post, I'd like to introduce you to two packages that we recently released. The first is laravel-webhook-server, which allows you to send webhook requests. The second one is laravel-webhook-client, which makes it easy to receive those webhook request. Webhooks are very useful when a system wants...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 6
    axios-extensions

    axios-extensions

    axios extensions lib, including throttle, cache, retry features etc.

    A non-invasive, simple, reliable collection of axios extension. It is highly recommended to enable the request logging recorder in the development environment(disabled by default). Besides configuring the request through the cacheAdapterEnhancer, we can enjoy more advanced features via configuring every individual request.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 7
    HTTP Factories

    HTTP Factories

    Implementation of PSR-17 (HTTP Message Factories)

    Implementation of PSR-17 (HTTP Message Factories) This repository holds all interfaces related to PSR-17 (HTTP Factories). Note that this is not a HTTP Factory implementation of its own. It is merely interfaces that describe the components of a HTTP Factory. The installable package and implementations are listed on Packagist. PSR-7 did not include a recommendation on how to create HTTP objects, which leads to difficulties when needing to create new HTTP objects within components...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 8
    Nock

    Nock

    HTTP server mocking and expectations library for Node.js

    HTTP server mocking and expectations library for Node.js. Nock can be used to test modules that perform HTTP requests in isolation. For instance, if a module performs HTTP requests to a CouchDB server or makes HTTP requests to the Amazon API, you can test that module in isolation. Nock works by overriding Node's http.request function. Also, it overrides http.ClientRequest too to cover for modules that use it directly.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 9
    Shelf

    Shelf

    Web server middleware for Dart

    Shelf makes it easy to create and compose web servers and parts of web servers. How? Expose a small set of simple types. Map server logic into a simple function: a single argument for the request, the response is the return value. Trivially mix and match synchronous and asynchronous processing. Flexibility to return a simple string or a byte stream with the same model. An adapter must handle all errors from the handler, including the handler returning a null response. It should print each error...
    Downloads: 0 This Week
    Last Update:
    See Project
  • Tigerpaw One | Business Automation Software for SMBs Icon
    Tigerpaw One | Business Automation Software for SMBs

    Fed up with not having the time, money and resources to grow your business?

    The only software you need to increase cash flow, optimize resource utilization, and take control of your assets and inventory.
  • 10
    HTTP

    HTTP

    Rust HTTP types

    This crate is a general purpose library for common types found when working with the HTTP protocol. You’ll find Request and Response types for working as either a client or a server as well as all of their components. Notably you’ll find Uri for what a Request is requesting, a Method for how it’s being requested, a StatusCode for what sort of response came back, a Version for how this was communicated, and HeaderName/HeaderValue definitions to get grouped in a HeaderMap to work with request...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 11
    Files for Meteor.js

    Files for Meteor.js

    Upload files via DDP or HTTP to Meteor server FS

    Stable, fast, robust, and well-maintained Meteor.js package for file management using MongoDB Collection API. What does exactly this means? Calling .insert() method would initiate a file upload and then insert a new record into the collection. Calling .remove() method would erase stored file and records from MongoDB Collection. And so on, no need to learn new APIs. It's flavored with extra low-level methods like .unlink() and .write() for complex integrations.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 12
    requests-cache

    requests-cache

    Persistent HTTP cache for python requests

    requests-cache is a persistent HTTP cache that provides an easy way to get better performance with the Python requests library. Keep using the requests library you’re already familiar with. Add caching with a drop-in replacement for requests. The session, or install globally to add transparent caching to all request functions. Get sub-millisecond response times for cached responses. When they expire, you still save time with conditional requests. Works with several storage backends including...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 13
    find-my-way

    find-my-way

    A crazy fast HTTP router

    ...-regex2). According to RFC3986, find-my-way is case-sensitive by default. You can disable this by setting the caseSensitive option to false: in that case, all paths will be matched as lowercase, but the route parameters or wildcards will maintain their original letter casing.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 14
    Drill

    Drill

    Drill is an HTTP load testing application written in Rust

    Drill is an HTTP load-testing application written in Rust. The main goal for this project is to build a really lightweight tool as an alternative to other that require JVM and other stuff. You can write benchmark files, in YAML format, describing all the stuff you want to test. It was inspired by Ansible syntax because it is really easy to use and extend. As you can see, you can play with interpolations in different ways. This will let you specify a benchmark with different requests...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 15
    http4k

    http4k

    The Functional toolkit for Kotlin HTTP applications

    http4k is a lightweight but fully-featured HTTP toolkit written in pure Kotlin that enables the serving and consuming of HTTP services in a functional and consistent way. http4k applications are just Kotlin functions. http4k consists of a lightweight core library, http4k-core, providing a base HTTP implementation and Server/Client implementations based on the JDK classes. Further servers, clients, serverless, templating, websockets capabilities are then implemented in add-on modules. http4k...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 16
    http-proxy-middleware

    http-proxy-middleware

    Http-proxy middleware for connect, express and browser-sync

    Node.js proxying made simple. Configure proxy middleware with ease for connect, express, browser-sync and many more. All http-proxy options can be used, along with some extra http-proxy-middleware options. Determine which requests should be proxied to the target host. Target host to proxy to. (protocol + host). Providing an alternative way to decide which requests should be proxied; In case you are not able to use the server's path parameter to mount the proxy or when you need more flexibility...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 17
    Martian Proxy

    Martian Proxy

    Martian is a library for building custom HTTP/S proxies

    Martian Proxy is a programmable HTTP proxy designed to be used for testing. Martian is a great tool to use if you want to verify that all (or some subset) of requests are secure. Mock external services at the network layer. Inject headers, modify cookies or perform other mutations of HTTP requests and responses. Verify that pingbacks happen when you think they should. Unwrap encrypted traffic (requires install of CA certificate in browser) By taking advantage of Go cross-compilation, Martian...
    Downloads: 2 This Week
    Last Update:
    See Project
  • 18
    binserve

    binserve

    A fast production-ready static web server with TLS (HTTPS)

    A fast static web server with TLS (HTTPS), routing, hot reloading, caching, templating, and security in a single binary you can set up with zero code. Binserve is designed to be performant, this is thanks to Actix-Web - one of the fastest web frameworks out there and DashMap for handling routes and cache storage. Binserve is cross-platform and portable to any major operating system, like it can run on your Android phone! Routing is simply matching a URI path to a file or a directory in a JSON...
    Downloads: 2 This Week
    Last Update:
    See Project
  • 19
    WampServer

    WampServer

    A Windows Web development environment for Apache, MySQL, PHP databases

    WampServer is a Web development platform on Windows that allows you to create dynamic Web applications with Apache2, PHP, MySQL and MariaDB. WampServer automatically installs everything you need to intuitively develope Web applications. You will be able to tune your server without even touching its setting files. Best of all, WampServer is available for free (under GPML license) in both 32 and 64 bit versions. Wampserver is not compatible with Windows XP, SP3, or Windows Server 2003.
    Leader badge
    Downloads: 30,941 This Week
    Last Update:
    See Project
  • 20
    WinNMP - Windows Nginx MySql Php 8 stack

    WinNMP - Windows Nginx MySql Php 8 stack

    Fast & stable Nginx MariaDB Redis Php 8 development stack for Windows

    WinNMP - Nginx MariaDB Redis Php 8 development stack for Windows A lightweight, fast and stable server stack for developing php mysql applications on windows, based on the excellent webserver Nginx. A lighter alternative to XAMPP and WAMP. Also known as WTServer and wt-nmp Current Package contains the latest stable versions of: - Nginx web server - MariaDB 10 database server, mysql replacement (32/64bit) - MongoDB 4 document-based database (64bit) - Redis Cache/NoSql, memcached...
    Leader badge
    Downloads: 110 This Week
    Last Update:
    See Project
  • 21
    Xampp Lite

    Xampp Lite

    A Windows Web development environment for Apache, MySQL and PHP.

    Xampp Lite Portable/Installer includes Apache web server, MariaDB, PHP, phpMyAdmin and HeidiSQL. Xampp home: https://sourceforge.net/projects/xampp/ Logo By https://www.apachefriends.org/, Fair use, https://en.wikipedia.org/w/index.php?curid=64389844
    Leader badge
    Downloads: 83 This Week
    Last Update:
    See Project
  • 22
    ESP32-S2-Mini

    ESP32-S2-Mini

    Arduino ESP32-S2-Mini v1.00 Wemos | Firmware PS4 900x HOST Wifi AP

    Firmware para placa de desarrollo Arduino ESP32-S2 Mini v1.0.0 LOLIN-WIF WEMOS ESP32S2 Dev para Montar Servidor Host AP PlayStation 4 Herramienta web para instalar la última versión del Firmware: https://xdevgms.github.io/ Una vez instalado el firmware podrá conectar con la placa ESP32-S2 Mini vía Wifi WiFi SSID: PS4-Host-AP Password: password Página del administrador http://10.1.1.1/admin.html http://webkey.local/admin.html Nota Importante 1: En la sección configuración General en...
    Downloads: 74 This Week
    Last Update:
    See Project
  • 23
    Small HTTP server

    Small HTTP server

    Universal server

    It is not only a web server, it is also Mail server, DNS server, FTP server, Proxy server, VPN server and client... All in one! This program will help you to open all the possibilities Internet can offer for your company - public site, provide Internet access and personal mailboxes for each employee! HTTP server. Server Side Includes. Regular expression in SSI. CGI interface for scripts (Executable files; Perl,PHP, or another external interpreters) ISAPI...
    Downloads: 13 This Week
    Last Update:
    See Project
  • 24
    TJWS is an Open Source HTTP Server and Servlet container written in 100% Java. It's designed to be a light weight, high performing, secure, embeddable, extensible and flexible. Very small footprinted (~100K), CGI, J2EE/JSP compatible. Servlet spec 3.1
    Downloads: 6 This Week
    Last Update:
    See Project
  • 25
    AMP Servers For Windows 32 Bit ( x86 )

    AMP Servers For Windows 32 Bit ( x86 )

    Apache v2.4, MariaDB v10.4, PHP v8.1 With Automated Service Installers

    Please watch the video below for a sample library software installation, which uses this same server. After watching / installing the services, you may copy your new application folder, to the C:\slims9-x86\httpd\htdocs directory and change the DocumentRoot value in the following files : 1. C:\slims9-x86\httpd\conf\httpd.conf 2. C:\slims9-x86\httpd\conf\extra\httpd-ssl.conf Restart the services for applying the new configuration. You may now access your install.php / index.php file, from...
    Downloads: 3 This Week
    Last Update:
    See Project