About 18,300,000 results
Open links in new tab
  1. What is JSON and what is it used for? - Stack Overflow

    JSON (JavaScript Object Notation) is a lightweight format that is used for data interchanging. It is based on a subset of JavaScript language (the way objects are built in JavaScript).

  2. Can comments be used in JSON? - Stack Overflow

    Many parsers and minifiers support JSON comments as well, so just make sure your parser supports them. JSON is used a lot for application data and configuration settings, so …

  3. What is the role of the package-lock.json? - Stack Overflow

    Jun 1, 2017 · The solution to all this is the package-lock.json file which as described above locks in the versions of the full dependency tree. This allows you to guarantee your dependency tree …

  4. appsettings.json vs appsettings.{Environment}.json in .NET Core apps

    Feb 27, 2021 · TLDR; You set the defaults and non changing values in the plain json and the overrides in the environment json, as you described. The default JsonConfigurationProvider …

  5. How to escape special characters in building a JSON string?

    If you're using a language that doesn't have such functionality built in, you can probably find a JSON parsing and encoding library to use. If you simply use language or library functions to …

  6. c# - Automatically set appsettings.json for dev and release ...

    Sep 22, 2017 · I've defined some values in my appsettings.json for things like database connection strings, webapi locations and the like which are different for development, staging …

  7. How to find unused packages in package.json? - Stack Overflow

    Is there a way to determine if you have packages in your package.json file that are no longer needed? For instance, when trying out a package and later commenting or deleting code, but …

  8. JSON Naming Convention (snake_case, camelCase or PascalCase)

    JSON-LD - camelCased Conclusions Choosing the right JSON naming convention for your JSON implementation depends on your technology stack. There are cases where you can use …

  9. What is the difference between YAML and JSON? - Stack Overflow

    What are the differences between YAML and JSON, specifically considering the following things? Performance (encode/decode time) Memory consumption Expression clarity Library …

  10. Which appsettings.json file does Dotnet Core use as default, the ...

    Jul 30, 2018 · There's no "default" order. .NET Core will use the files specified in your code. There's nothing special about appsettings.json or the Json configuration provider either. As far …