About 50 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 comments are necessary …

  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 for other …

  4. 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 availability, ease …

  5. 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 forgetting to

  6. .NET Core 8 appsettings.json not defaulted when env specific file is used

    Sep 25, 2024 · The issue I'm running into is that when the appsettings.local.json file is used (or any other env specific file), then the base values in the appsettings.json file aren't loaded even if the …

  7. What is JSON used for in web applications? - Stack Overflow

    Mar 4, 2011 · JSON is a format for encoding information returned by the server. When you call a script with AJAX/XHR (e.g. with JavaScript) the returned information can come via XML, JSON, or another …

  8. Difference between app.config and appsettings.json

    Feb 9, 2023 · 14 app.config is used to store configuration details for a .NET Framework application, and it's a traditional way to store configuration data in XML format. However, in recent times, there's a …

  9. 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 and live …

  10. When is the @JsonProperty property used and what is it used for?

    1 From JsonProperty javadoc, Defines name of the logical property, i.e. JSON object field name to use for the property. If value is empty String (which is the default), will try to use name of the field that is …