Comparing Code Searchers

I am biased. I like my code search cause I know how it works as I wrote it. However, there are a few options for code searchers out there. But let me stat this first;

ServiceNow should have this OOB in their system not buried behind their Studio application.

Now that I've said my peace about it I'm going to compare all the code searcher's I know about.

Global Code Search by Rick Marsha

A portable search utility that leverages the 'sn_codesearch' application (App Studio) for performing string searches across multiple tables and fields. Based on the out-of-box sample page 'CodeSearchExampleUse', but rather than only searching within custom application scopes, this page performs a system-wide search across all scopes, including GLOBAL.

Downloads as of 2019-11-25: 196

This includes 2 files;

Download: Share

This is a very pretty search that uses that /api/sn_codesearch/ apis. It is installed in the global application. This also adds a left hand navigation Menu called, "Code Search" with a links to;

MS CodeSearch by Sebastian Reinmann

This is a Code Search application based on the sn_codesearch REST API and provides a quick and easy way to lookup code in the entirety ServiceNow instance.

Downloads as of 2019-11-25: 188

This include 3 files;

Download:

This is in a scoped app so it can be removed entirely, has a nice UI. A satisfying progress bar, collapsible search results, and syntax highlighted results.

FetchCode by Brent Llewellyn

FetchCode is a handy utility for finding mysterious updaters, logging, wonkiness, and any other code snippets you could need to find throughout your instance. Just provide the terms to search for and FetchCode searches all script, xml, html, condition, calculation, system properties and default values as well as specific fields added in the config for the terms supplied in the dashboard.

Downloads as of 2019-11-25: 113

This includes 321 Updates, on Share it lists these;

Download: Share

This has a unique look and feel. It is installed in global and has a number of custom tables but without the u_ prefix which forces me to raise my left eyebrow. If they are mucking with tables like that I have to wonder what else they are doing.

Code Tools by Jace Benson

This is a scoped application for Service-now to allow easier searching all code sources.

This includes 8 files;

This does the standard search api, but then also does a lookup on the workflow activity to update results for workflow activities that are only active and marking old ones "Inactive"

This also has an opt-in feature to tell you about bad code.

Download:

Downloads as of 2019-11-25: 115

Developer Search by Garrett Griffin

Introducing Developer Search 2.0, the comprehensive utility to search every script field in the system for that troublesome piece of code.

This includes 6 files;

I love the short url for this, /ds.do

I also love that you can share the link to the results.

It searches custom tables and fields normally which is great. The UI is a little difficult to read but is very functional.

It also features a "Deep Search" which appears to search other fields not traditionally scripting fields.

One thing it does really well is find Workflow Activity results.

Download:

Downloads as of 2019-11-25: 47

Studio Search by ServiceNow

Studio allows application developers to search within application files for matching record values.

Source: https://docs.servicenow.com/bundle/newyork-application-development/page/build/applications/task/t_SearchWithinApplicationFiles.html

Downloads as of 2019-11-25: ♾️

Summary

Global Code SearchMS CodeSearchFetchCodeCode ToolsDeveloper SearchStudio Search
Installed OOB🚫🚫🚫🚫🚫
Scoped App🚫🚫🚫🚫
UI16 navigator links🚫🚫
UI Action to open Search🚫🚫🚫🚫🚫
Install-able from Git🚫🚫🚫🚫
Advanced Query function🚫🚫🚫🚫🚫
Code Analysis🚫🚫🚫🚫🚫
Searches extra tables🚫🚫
Looks up Active WF activities🚫🚫🚫🚫
Tables used005000

With all this being said, I'd love to combine my efforts into a project with any of the maintainers of the code here.