Open Source JavaScript Version Control Software

JavaScript Version Control Software

View 77 business solutions

Browse free open source JavaScript Version Control Software and projects below. Use the toggles on the left to filter open source JavaScript Version Control Software by OS, license, language, programming language, and project status.

  • Simplify IT and security with a single endpoint management platform Icon
    Simplify IT and security with a single endpoint management platform

    Automate the hardest parts of IT

    NinjaOne automates the hardest parts of IT, delivering visibility, security, and control over all endpoints for more than 20,000 customers. The NinjaOne automated endpoint management platform is proven to increase productivity, reduce security risk, and lower costs for IT teams and managed service providers. The company seamlessly integrates with a wide range of IT and security technologies. NinjaOne is obsessed with customer success and provides free and unlimited onboarding, training, and support.
    Learn More
  • Get Avast Free Antivirus | Your top-rated shield against malware and online scams Icon
    Get Avast Free Antivirus | Your top-rated shield against malware and online scams

    Boost your PC's defense against cyberthreats and web-based scams.

    Our antivirus software scans for security and performance issues and helps you to fix them instantly. It also protects you in real time by analyzing unknown files before they reach your desktop PC or laptop — all for free.
    Free Download
  • 1
    lint-staged

    lint-staged

    Run linters on git staged files

    Run linters against staged git files and don't let anything slip into your code base! Linting makes more sense when run before committing your code. By doing so you can ensure no errors go into the repository and enforce code style. But running a lint process on a whole project is slow, and linting results can be irrelevant. Ultimately you only want to lint files that will be committed. This project contains a script that will run arbitrary shell tasks with a list of staged files as an argument, filtered by a specified glob pattern. Linter commands work on a subset of all staged files, defined by a glob pattern. lint-staged uses micromatch for matching files. The concept of lint-staged is to run configured linter tasks (or other tasks) on files that are staged in git. lint-staged will always pass a list of all staged files to the task, and ignoring any files should be configured in the task itself.
    Downloads: 7 This Week
    Last Update:
    See Project
  • 2
    Netlify CMS

    Netlify CMS

    A Git-based CMS for static site generators

    Open source content management for your Git workflow. Use Netlify CMS with any static site generator for a faster and more flexible web project. Get the speed, security, and scalability of a static site, while still providing a convenient editing interface for content. Content is stored in your Git repository alongside your code for easier versioning, multi-channel publishing, and the option to handle content updates directly in Git. Netlify CMS is built as a single-page React app. Create custom-styled previews, UI widgets, and editor plugins or add backends to support different Git platform APIs. Getting started is simple and free. Choose a template that’s pre-configured with a static site generator and deploys to a global CDN in one click. You get to implement modern front end tools to deliver a faster, safer, and more scalable site. Editors get a friendly UI and intuitive workflow that meets their content management requirements.
    Downloads: 6 This Week
    Last Update:
    See Project
  • 3
    pretty-quick

    pretty-quick

    Get Pretty Quick

    Runs Prettier on your changed files. Pre-commit mode. Under this flag only staged files will be formatted, and they will be re-staged after formatting. Partially staged files will not be re-staged after formatting and pretty-quick will exit with a non-zero exit code. The intent is to abort the git commit and allow the user to amend their selective staging to include formatting fixes. When not in staged pre-commit mode, use this flag to compare changes with the specified branch. Defaults to master (git) / default (hg) branch. Do not resolve prettier config when determining which files to format, just use standard set of supported file types & extensions prettier supports. This may be useful if you do not need any customization and see performance issues. Check that files are correctly formatted, but don't format them. This is useful on CI to verify that all changed files in the current branch were correctly formatted.
    Downloads: 4 This Week
    Last Update:
    See Project
  • 4
    ungit

    ungit

    A tool to simplify the use of git, on any platform, anywhere

    Git is known for being a versatile distributed source control system that is a staple of many individuals, communities, and even for the City of Chattanooga to crowd source bicycle parking locations. However, it is not known for userfriendliness or easy learning curve. Ungit brings user friendliness to git without sacrificing the versatility of git. Git and github both supports PGP signing. Within Ungit these features can be enabled. Currently, Ungit DOES NOT support GPG authentication! While git allows robust programmatic authentication via credential-helper, I could not find an easy way to do something equivalent with GPG. Therefore, password-less gpg authentication or 3rd party gpg password must be configured when using Ungit to commit with gpg. Ungit will watch git directory recursively upon page view and automatically refresh contents on git operations or changes on files that are not configured to be ignored in .gitignore.
    Downloads: 4 This Week
    Last Update:
    See Project
  • Our Free Plans just got better! | Auth0 Icon
    Our Free Plans just got better! | Auth0

    With up to 25k MAUs and unlimited Okta connections, our Free Plan lets you focus on what you do best—building great apps.

    You asked, we delivered! Auth0 is excited to expand our Free and Paid plans to include more options so you can focus on building, deploying, and scaling applications without having to worry about your security. Auth0 now, thank yourself later.
    Try free now
  • 5
    Conventional Changelog

    Conventional Changelog

    Generate changelogs and release notes from a project's commit messages

    The conventional-changelog repo is managed as a monorepo; it's composed of many npm packages. It's recommended you use the high-level standard-version library, which is a drop-in replacement for npm's version command, handling automated version bumping, tagging, and CHANGELOG generation. Alternatively, if you'd like to move towards completely automating your release process as an output from CI/CD, consider using semantic-release. We specifically limit our support to LTS versions of Node, not because this package won't work on other versions, but because we have a limited amount of time, and supporting LTS offers the greatest return on that investment. It's possible this package will work correctly on newer versions of Node. It may even be possible to use this package on older versions of Node, though that's more unlikely as we'll make every effort to take advantage of features available in the oldest LTS version we support.
    Downloads: 3 This Week
    Last Update:
    See Project
  • 6

    Husky

    Git hooks made easy

    Husky is a tool that makes handling Git hooks a lot easier, and lets you run the scripts you want at those stages. It works by including an object right within your package.json file. This then configures Husky so that it runs the scripts you specify. After that, it's Husky's responsibility to manage at which point in the Git lifecycle your scripts will run. Husky helps to improve your commits, lets you run tests, lint code and more when you commit or push. It is very lightweight, with zero dependencies and is capable of supporting all Git hooks.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 7
    isomorphic-git

    isomorphic-git

    A pure JavaScript implementation of git for node and browsers!

    A pure JavaScript implementation of git for node and browsers! Clone repos, create commits, push branches and more in client-side JS. It uses the same on-disk format as git so it works with existing repos. isomorphic-git is a pure JavaScript implementation of git that works in node and browser environments (including WebWorkers and ServiceWorkers). This means it can be used to read and write to git repositories, as well as fetch from and push to git remotes like GitHub. isomorphic-git aims for 100% interoperability with the canonical git implementation. This means it does all its operations by modifying files in a ".git" directory just like the git you are used to. The included isogit CLI can operate on git repositories on your desktop or server. isomorphic-git aims to be a complete solution with no assembly required. The API has been designed with modern tools like Rollup and Webpack in mind.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 8
    meta

    meta

    Tool for turning many repos into a meta repo

    Tool for turning many repos into a meta repo. why choose many repos or a monolithic repo, when you can have both with a meta repo? meta is powered by plugins that wrap common commands, letting you execute them against some or all of the repos in your solution at once. meta is built on loop, and as such inherits loops ability to easily target a particular set of directories for executing a common command (eg meta git status --include-only dir1,dir2. See loop for more available options). meta is a tool for managing multi-project systems and libraries. It answers the conundrum of choosing between a mono repo or many repos by saying "both", with a meta repo! Give every engineer on your team the same project setup, regardless of where it's cloned. Execute arbitrary commands against many repos to manage your projects. Easily wrap commands for working with any platform, not just Node!
    Downloads: 1 This Week
    Last Update:
    See Project
  • 9
    iF.SVNAdmin
    The iF.SVNAdmin application is a web based GUI to your Subversion authorization file. It is based on PHP 5.3 and requires a web server (Apache) to be installed. (+ LDAP integration; no database required)
    Leader badge
    Downloads: 7 This Week
    Last Update:
    See Project
  • Powering the best of the internet | Fastly Icon
    Powering the best of the internet | Fastly

    Fastly's edge cloud platform delivers faster, safer, and more scalable sites and apps to customers.

    Ensure your websites, applications and services can effortlessly handle the demands of your users with Fastly. Fastly’s portfolio is designed to be highly performant, personalized and secure while seamlessly scaling to support your growth.
    Try for free
  • 10
    Mole is a project started in 2008, designed for allowing users to easily share all kinds of ressources. It is planned to be used as a Mozilla Firefox extension.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 11
    All Node.js versions

    All Node.js versions

    List all available Node.js versions

    List all available Node.js versions. Sorted from the most to the least recent. Includes major release and LTS information. This package is an ES module and must be loaded using an import or import() statement, not require(). The return value resolves to an object with the following properties. List of available Node.js versions and related information. Sorted from the most to the least recent Node.js version. List of Node.js major releases sorted from the most to the least recent.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 12
    Group project to develop a campground reservation system as part of a Software Engineering class requirement.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 13
    CodeForge is a web based management application that helps to develop and maintain IT projects. THIS PROJECT IS A PROTOTYPE and further work on it has been stopped. A proper project is hosted by the Google Code with the same name.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 14

    Codepot

    Web-based subversion manager

    Codepot is a web-based subversion repository manager. It incorporates the subversion revision control system and wiki-based documentation, and supports authentication via LDAP or DBMS. If you opt for the simplest, you can manage multiple subversion repositories independent of each other. Going beyond it, you can track issues, write documents, and upload release files. See it live at http://code.abiyo.net
    Downloads: 0 This Week
    Last Update:
    See Project
  • 15
    Colimas is a Component Library Management System. The objective is to store all reusable resets for enterprises or organizations and to help all developers to know where and how to get the needed components and reduce understanding time for project maint
    Downloads: 0 This Week
    Last Update:
    See Project
  • 16
    Commitizen for contributors

    Commitizen for contributors

    The commitizen command line utility

    When you commit with Commitizen, you'll be prompted to fill out any required commit fields at commit time. No more waiting until later for a git commit hook to run and reject your commit (though that can still be helpful). No more digging through CONTRIBUTING.md to find what the preferred format is. Get instant feedback on your commit message formatting and be prompted for required fields. Commitizen is currently tested against Node.js 12, 14, & 16, although it may work in older versions of Node.js. You should also have npm 6 or greater. When you're working in a Commitizen-friendly repository, you'll be prompted to fill in any required fields, and your commit messages will be formatted according to the standards defined by project maintainers. Installing and running Commitizen locally allows you to make sure that developers are running the exact same version of Commitizen on every machine.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 17
    Digital Archive and Retrieval Tool (DART) presents engineers with an easy to use alternative to typical SVN or other CVS type systems. It allows engineers to easily archive data and provides an interface for managing and accessing store information.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 18
    Deploid is a web-based resource deployment management system for managing resources in a multi-tiered web environment. It leverages the use of versioning control software to efficiently push resources to testing and production environments.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 19
    ForkHub

    ForkHub

    GitHub client for Android based on the abandoned app

    ForkHub started off as a fork of the Android app from GitHub, and has since seen lots of improvements. You can see a comprehensive list of changes in the change log. ForkHub is an open source GitHub client that started as a fork of the GitHub Android app after they abandoned it, and has seen a lot of improvements since then. Stay up-to-date with all your GitHub activity thanks to notifications and an integrated news feed for organizations, friends, and repositories. Create, manage, and discuss topics on any GitHub repository or view the dashboard topics to keep in touch with all the issues we've reported, assigned, or participate in discussion on. You can also view and filter a repository's edition list and bookmark it for quick access. See your GitHub organizations' repositories, members and teams and stay up to date with all the events. Discover, share, and discuss code snippets using the integrated GitHub Gists support.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 20
    WSH tool to mash-up command-line tools for software development
    Downloads: 0 This Week
    Last Update:
    See Project
  • 21
    Will allow web based (Facelet) ant compile/build/deploy script generator and runner unsing a JCR content repository for managing J2EE components in a project environnement. Maybe a little of all this soon...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 22
    Java based screenplay (movie script) editor and colaboration tool with a graphical interface (WYSIWYG) to create and/or edit scripts. Export in XML, PDF, XHTML and other formats. En español.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 23
    JViewCVS is a Java-based(JSP) web application for viewing a CVS repository. The goal of this project is to create the same functionality as viewcvs, but written in JSP.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 24

    JavaDocs

    My project to play around with Java and SVN

    Downloads: 0 This Week
    Last Update:
    See Project
  • 25
    A WikiWiki clone implemented in ASP with JavaScript. It uses JavaScript Template engine.It's very easy to install and use. Now will migrate to the J2EE platform
    Downloads: 0 This Week
    Last Update:
    See Project
  • Previous
  • You're on page 1
  • 2
  • 3
  • Next
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.