Showing 45 open source projects for "e-commerce"

View related business solutions
  • Try Google Cloud Risk-Free With $300 in Credit Icon
    Try Google Cloud Risk-Free With $300 in Credit

    No hidden charges. No surprise bills. Cancel anytime.

    Use your credit across every product. Compute, storage, AI, analytics. When it runs out, 20+ products stay free. You only pay when you choose to.
    Start Free
  • AI-generated apps that pass security review Icon
    AI-generated apps that pass security review

    Stop waiting on engineering. Build production-ready internal tools with AI—on your company data, in your cloud.

    Retool lets you generate dashboards, admin panels, and workflows directly on your data. Type something like “Build me a revenue dashboard on my Stripe data” and get a working app with security, permissions, and compliance built in from day one. Whether on our cloud or self-hosted, create the internal software your team needs without compromising enterprise standards or control.
    Try Retool free
  • 1

    Sasa

    Sasa is a collection of organized extensions to the .NET framework.

    Sasa is a set of extensions to the .NET framework for networking, generic operator handling, LINQ expression processing, parsing, and more.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 2
    Smartstore

    Smartstore

    Open Source ASP.NET MVC Enterprise eCommerce Shopping Cart Solution

    Smartstore is a free, open-source, full-featured e-commerce solution for companies of any size. It is web standards compliant and incorporates the newest Microsoft web technology stack. Smartstore includes all essential features to create multilingual and multi-currency stores targeting desktop or mobile devices and enabling SEO optimized rich product catalogs with support for an unlimited number of products and categories, variants, bundles, datasheets, ESD, discounts, coupons and many more. ...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 3
    Nosikasi Knowledge Process

    Nosikasi Knowledge Process

    Software helps to store, organize procedures and errors solutions

    ...For anyone who likes to take notes or doesn't have a good memory and an organizer, he's a good reference. It is available in Portuguese and English. PT Nosikasi é um programa que auxilia a armazenar, organizar procedimentos e soluções de erros. As soluções de mercado são pagas e as vezes muito complexa para algo simples. Para quem gosta de tomar notas ou não tem uma boa memória e um organizador, ele é uma boa referência. Está disponível em português e inglês.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 4
    Fast Image Resizer

    Fast Image Resizer

    2 clicks para Redimensionar.

    ...Redimensiona o tamanho da imagem a sem perder a proporção. Muito trabalho em reduzir o tamanho de imagens manualmente? Está aqui a Solução, um pequeno programa que adiciona e configura um item de menu de contexto do botão direito do mouse ao clicar sobre imagens no Windows, possibilitando redimensionar uma ou varias imagem com apenas 2 cliques com a definição que desejar, sem necessidade de abrir qualquer programa de edição. Bem Simples: Abra o Programa no modo Administrador. Defina a qualidade que deseja que fique no ContextMenu Salvar! ...
    Downloads: 0 This Week
    Last Update:
    See Project
  • Full-stack observability with actually useful AI | Grafana Cloud Icon
    Full-stack observability with actually useful AI | Grafana Cloud

    Our generous forever free tier includes the full platform, including the AI Assistant, for 3 users with 10k metrics, 50GB logs, and 50GB traces.

    Built on open standards like Prometheus and OpenTelemetry, Grafana Cloud includes Kubernetes Monitoring, Application Observability, Incident Response, plus the AI-powered Grafana Assistant. Get started with our generous free tier today.
    Create free account
  • 5
    eShopOnWeb

    eShopOnWeb

    Sample ASP.NET Core 8.0 reference application

    eShopOnWeb is Microsoft's .NET core sample reference application demonstrating monolithic web app architecture using Clean Architecture principles. It illustrates modern .NET patterns, organized across projects, and is designed for learning and as a starter template. The eShopOnWeb sample is related to the eShopOnContainers sample application which, in that case, focuses on a microservices/containers-based application architecture. However, eShopOnWeb is much simpler in regards to its...
    Downloads: 2 This Week
    Last Update:
    See Project
  • 6

    Calcex Math Parser

    Mathematical expression parser and evaluator for .NET

    Moved to https://github.com/alxnull/calcex Calcex is a simple math parser for .NET to evaluate mathematical expressions which is developed in C#. It supports many common mathematical operations and functions and allows the user to add custom functions and variables. It is possible to evaluate double or decimal values for high precision. Calcex also includes functions for converting numbers from decimal to binary or other bases. The project includes a simple calculator and...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 7
    OpenMAP Suite

    OpenMAP Suite

    OpenMAP Suite is a document management suite based on Subversion

    The OpenMAP business suite has been actively developed since 2011. The suite provides everything a typical DMS needs: * user and group management * data access management * e-mail account management * synchronized, offline mode capable file drive * document management system with tagging, indexing and trailing * server side document backup and archiving system The OpenMAP data handling is mostly based on Subversion, further existing software systems are used to implement the different modules. The server software is intended to run on (Gentoo or Centos) Linux. ...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 8

    OpenFileDialog

    Open file dialog that is callable from scripts

    ...The screenshots show it running in Wine on Linux which is how Windows apps are run on Linux. .NET 4 has to be installed in a 32-bit Wine for it to work on Linux. If you have trouble with it, please open a ticket and/or send me an e-mail. If you decide to use it, I would love to hear about it. Send me some feedback, good or bad.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 9
    Michel Max Spreadsheet Serialization

    Michel Max Spreadsheet Serialization

    Serializes and Deserializes objects into spreadsheets

    EN-US: Serializes and Deserializes objects into and from "Microsoft Excel XML" saved as ".xls". PT-BR: Serializa objetos em "Microsoft Excel XML" salvo como ".xls", e Deserializa "Microsoft Excel XML" salvo como ".xls" para objetos.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 8 Monitoring Tools in One APM. Install in 5 Minutes. Icon
    8 Monitoring Tools in One APM. Install in 5 Minutes.

    Errors, performance, logs, uptime, hosts, anomalies, dashboards, and check-ins. One interface.

    AppSignal works out of the box for Ruby, Elixir, Node.js, Python, and more. 30-day free trial, no credit card required.
    Start Free
  • 10

    NaiveLanguageTools

    C# lexer and parser

    ...If you understand/guess the meaning of grammar in C#: // scanning lexer.AddStringRule(")", match => SymbolEnum.RPAREN); // parsing prod_builder.AddProduction(SymbolEnum.exp, SymbolEnum.LPAREN, SymbolEnum.exp, SymbolEnum.RPAREN, (_1, e, _3) => (AstNode)e); or grammar in NLT format: // scanning /[A-Za-z_][A-Za-z_0-9]*/ -> IDENTIFIER, IdentifierSymbol.Create($text); // parsing program -> list:namespace_list { new Program(currCoords(), (Namespaces)list) }; you should be able to use it :-). There is Example project included which serves as tutorial.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 11
    Tipo de Dados CPF/CNPJ para SQL Server

    Tipo de Dados CPF/CNPJ para SQL Server

    Tipo de Dados CPF/CNPJ para SQL Server, com custo máximo de 7 bytes.

    PT-BR: Tipo de Dados CPF/CNPJ para SQL Server, com custo máximo de 7 bytes para armazenamento, com propriedades/métodos de validação e formatação do campo. Compatível com SQL Server 2005, 2008, 2012, 2014 e 2016. EN-US: Brazilian Federal Registration Data Type for SQL Server. CPF = People. CNPJ = Companies. It has 7 bytes of maximum cost for storage, along with properties/methods of validation and field format. Compatible with SQL Server 2005, 2008, 2012, 2014 and 2016.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 12

    HitCrypt

    Descritografar e Criptografar XMLs do Tribunal de Justiça

    O HitCrypt é uma ferramenta que pode ser utilizada para Decryptar o arquivo de Selos e Encryptar. Inicialmente este aplicativo está preparado para funcionar para o tribunal de justiça do estado de Minas Gerais.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 13
    Michel Max - SMTP Redirect

    Michel Max - SMTP Redirect

    The Michel Max - SMTP Redirect is an application designated to rec...

    The Michel Max - SMTP Redirect is an application designated to receive e-mails and redirect them if the permissions are complied, it is designated to software houses that need to keep the Real E-Mail password hidden, but allowing its developers to send test messages. This application requires a Real SMTP server such as YAHOO or GOOGLE to work.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 14
    MemoSnaps

    MemoSnaps

    Simple easy management and sending of text files!

    MemoSnaps is a free application developed for the Windows plataform with the intuit of allowing its users an easy file management. Version 1.1V now available, changelog: - Printing files - Enhanced security in e-mail communication - Minor bugs corrected - Minor visual enhancements - Auto save system after file editing (Allows "undo")
    Downloads: 3 This Week
    Last Update:
    See Project
  • 15
    An open spurce warning, info and exception library that allows user to save logs in xml and text format(currenlty only the exception) and sent them via e-maail contained in a xml file . The library is written in C# for dotnetframework 2 ok you can find a
    Downloads: 0 This Week
    Last Update:
    See Project
  • 16
    Foi comprovado que senhas como: datas de nascimento, números de telefone, numero de cartões de crédito... são fáceis de serem descobertas (hackeadas), por isso existe o Password Generator, para gerar senhas que são difíceis de descobrir. O Sistema funciona como um gerador RANDOM, que cria instantaneamente uma série de possibilidades de combinações que o sistema julga ser mais difícil para programas e hackers descobrirem.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 17

    Keyfile editor for Falcon BMS

    An editor for .key files for Falcon BMS 4.32

    This will help you edit those hard-to-understand .key files for your controller and keyboard setup with the game Falcon BMS 4.32 by Benchmarksims. Please refer to the thread on Benchmarksims forum for questions/suggestions/feedback where additional information and tutorial is avaliable (click Web Site-link below)
    Downloads: 2 This Week
    Last Update:
    See Project
  • 18

    ReCaptcha plugin for Kooboo CMS

    ReCaptcha Validator Plugin for Kooboo CMS for add content or send mail

    ReCaptcha Validator Plugin for Kooboo CMS for adding content or sending feedback e-mail
    Downloads: 0 This Week
    Last Update:
    See Project
  • 19
    FFEntityFramework is an Object-Relational Mapping Framework (O-R Mapping / Object Persistence) for .NET with built-in features like Xml-Serialization, Model-View-Controller-Framework or UndoManagement ... All these Components use the same Meta-Base which can be definied via Attributes (Annotations) on your Business-Classes. Nevertheless differences between Xml- and Db-Serialization can be made via an enum MetaUsage (Database, Xml, Internal …). For Example you can define a Key-Column which...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 20
    Sofuxe - Agenda
    A agenda possui uma interface amigável para que os usuários possam interagir de maneira simples, sem a necessidade de um estudo detalhado. Dispõe de diversos recursos muito úteis e de fácil manuseio tornando-a bem rápida e operacional.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 21
    ProCollEE is a project collaboration enabling environment for Windows Operating Systems ProCollEE allows team members to communicate in real time without disturbing each other as e-mail or chat clients do.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 22
    Projeto do 4BI 2009 - Grupo G6 Aurélio e Marcelo C
    Downloads: 0 This Week
    Last Update:
    See Project
  • 23
    ActFX is a 3D engine written in C # using XNA and Framework.NET ActFX è un 3D engine scritto in C# utilizzando XNA e il Framework.NET
    Downloads: 0 This Week
    Last Update:
    See Project
  • 24
    A small executable that enables Subversion admins, through a simple configuration file, to be able to control multiple repository paths for all pre- and post-commit enforcing commit regex requirements, integration with Bugzilla an e-mail notification.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 25
    Simple tool to help with common coding tasks, like generating repetative code structures from data you may get out of a spreadsheet or e-mail.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Previous
  • You're on page 1
  • 2
  • Next
MongoDB Logo MongoDB