Skip to content

shahrukhalam123/Coderr.Server

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Coderr Community Server

Build status Github All Releases

Discover more errors and solve them faster!

Welcome screen

Search function

Search using your own data

.. don't want to host/maintain your own server? Try Coderr Live

What’s Coderr?

Coderr is an error handling tool developed specifically for .NET applications. Coderr provides an insight to all errors that are occurring and gives you control and a complete view of your applications’ status.

Why change?

Too often, error detection and management involves relying on reports from users and random logfile scanning. The unknown amount of errors and weaknesses of the code creates uncertainty and lessens your control. With a systematic approach facilitated by a tool built for developers by developers, Coderr provides insight about the status of the applications.

Getting started

Once you have downloaded and installed the server you need to install and configure one of our nuget packages. You can read more about them here.

Unhandled exceptions will automatically be reported by the client libraries.

To report exceptions manually:

public void UpdatePost(int uid, ForumPost post)
{
	try
	{
		_service.Update(uid, post);
	}
	catch (Exception ex)
	{
		Err.Report(ex, new{ UserId = uid, ForumPost = post });
	}
}

The context information will in this case be attached as:

You can learn more about reporting errors here.

Running Coderr

You can run any Coderr in development, test and in production. Coderr is available in three different ways; as Coderr Community Server (AGPL license, self-hosting), as Coderr Live (commercial license, cloud version) or on request, as Coderr running on premise (commercial license, self-hosting version). Coderr Live and Coderr on premise add powerful algorithms to prioritize errors and provide insight to how your code is improving over time with applied solutions. Coderr was rebranded and developed from OneTrueError in 2017.

Read more

About us

We are passionate about Open Source, Microsoft .NET and code quality. 1TCompany started in 2017 in Sweden and builds on years of coding experience and bringing products to market. Our mission is to assist fellow developers deliver quality code. To accomplish this mission, we decided to make Coderr commercially available and ready for prime time.

Community

Licensing

About

Replace logfiles with Coderr to correct bugs faster and more efficiently.

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 73.4%
  • TypeScript 11.2%
  • HTML 8.1%
  • CSS 3.2%
  • JavaScript 3.0%
  • TSQL 1.0%
  • Batchfile 0.1%