Extends the Chrome Developer Tools, adding a new Network Panel in the Developer Tools window with better searching and response previews. https://leviolson.com/posts/chrome-ext-better-network-panel
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
2.0 KiB

4 years ago
  1. # CodeMirror
  2. [![Build Status](https://travis-ci.org/codemirror/CodeMirror.svg)](https://travis-ci.org/codemirror/CodeMirror)
  3. [![NPM version](https://img.shields.io/npm/v/codemirror.svg)](https://www.npmjs.org/package/codemirror)
  4. [![Join the chat at https://gitter.im/codemirror/CodeMirror](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/codemirror/CodeMirror)
  5. CodeMirror is a versatile text editor implemented in JavaScript for
  6. the browser. It is specialized for editing code, and comes with over
  7. 100 language modes and various addons that implement more advanced
  8. editing functionality. Every language comes with fully-featured code
  9. and syntax highlighting to help with reading and editing complex code.
  10. A rich programming API and a CSS theming system are available for
  11. customizing CodeMirror to fit your application, and extending it with
  12. new functionality.
  13. You can find more information (and the
  14. [manual](https://codemirror.net/doc/manual.html)) on the [project
  15. page](https://codemirror.net). For questions and discussion, use the
  16. [discussion forum](https://discuss.codemirror.net/).
  17. See
  18. [CONTRIBUTING.md](https://github.com/codemirror/CodeMirror/blob/master/CONTRIBUTING.md)
  19. for contributing guidelines.
  20. The CodeMirror community aims to be welcoming to everybody. We use the
  21. [Contributor Covenant
  22. (1.1)](http://contributor-covenant.org/version/1/1/0/) as our code of
  23. conduct.
  24. ### Installation
  25. Either get the [zip file](https://codemirror.net/codemirror.zip) with
  26. the latest version, or make sure you have [Node](https://nodejs.org/)
  27. installed and run:
  28. npm install codemirror
  29. **NOTE**: This is the source repository for the library, and not the
  30. distribution channel. Cloning it is not the recommended way to install
  31. the library, and will in fact not work unless you also run the build
  32. step.
  33. ### Quickstart
  34. To build the project, make sure you have Node.js installed (at least version 6)
  35. and then `npm install`. To run, just open `index.html` in your
  36. browser (you don't need to run a webserver). Run the tests with `npm test`.